chansung commited on
Commit
3ca67d2
1 Parent(s): 5c7d00d

Create templates.py

Browse files
Files changed (1) hide show
  1. templates.py +92 -0
templates.py ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ templates = [
2
+ {
3
+ "title": "Marketing",
4
+ "template": [
5
+ "Can you provide me with some ideas for blog posts about [topic of your choice]",
6
+ "Create a social media post that targets [the specific audience] and explains how our product [product name] can help them.",
7
+ "Write a list of 5 YouTube video ideas for [your product or company]",
8
+ "Suggest inexpensive ways I can promote my [company] with/without using [Media channel]"
9
+ ],
10
+ },
11
+ {
12
+ "title": "Business",
13
+ "template": [
14
+ "Analyze the current state of [industry] and its trends, challenges, and opportunities, including relevant data and statistics. Provide a list of key players and a short and long-term industry forecast, and explain any potential impact of current events or future developments.",
15
+ "Offer a detailed review of a [specific software or tool] for [describe your business].",
16
+ "I need to prepare a presentation for a potential investor on [presentation topic]. Can you give me some guidance on what to include?",
17
+ "I need to write an email to a client regarding a change in the project timeline. Can you give me some guidance on how to phrase it?"
18
+ ]
19
+ },
20
+ {
21
+ "title": "Content Creation",
22
+ "template": [
23
+ "Generate a creative social media content calendar for the next month for our [company or product] on [topic of choice]",
24
+ "Generate a list of 5 LinkedIn articles to write for a [profession or topic of your choice]",
25
+ "Create two Google Ads in an RSA format (using multiple headlines and descriptions) for an A/B test for [your company] Explain why the ads would make a good test.",
26
+ "Write an email to [person] with some facts about [Topic of your choice] with a [theme of your choice]"
27
+ ]
28
+ },
29
+ {
30
+ "title": "Education",
31
+ "template": [
32
+ "Create a magical system that emphasizes education and is based on [topic of your choice].",
33
+ "Teach me the [topic of your choice] and give me a quiz at the end, but don’t give me the answers and then tell me if I answered correctly.",
34
+ "Can you give me an example of how to solve a [Problem statement]?",
35
+ "Create a YAML template to detect the Magento version for the Nuclei vulnerability scanner."
36
+ ]
37
+ },
38
+ {
39
+ "title": "Teachers",
40
+ "template": [
41
+ "Create a list of 5 types of data that teachers can collect to monitor student learning and progress.",
42
+ "Create a quiz with 5 multiple choice questions that assess students' understanding of [concept being taught].",
43
+ "Generate a list of specific and actionable steps that a student can take to improve their performance in [subject/task]",
44
+ "Create a list of 5 teaching strategies that could be used to engage and challenge students of different ability levels in a lesson on [concept being taught]"
45
+ ]
46
+ },
47
+ {
48
+ "title": "Web Development",
49
+ "template": [
50
+ "Suggest inexpensive ways I can promote my [company] with/without using [Media channel]",
51
+ "I need to create a REST API endpoint for my web application. Can you provide an example of how to do that using Node.js and Express?",
52
+ "I’m making a website for a small business [Business description]. I need ideas on how to structure the website using WordPress.",
53
+ "Find the bug with this code: [post code below]"
54
+ ]
55
+ },
56
+ {
57
+ "title": "Trravel and Tourism",
58
+ "template": [
59
+ "How much money do I need as a tourist for [X] days in [Location]?",
60
+ "How much money do I need to survive a day in [location]?",
61
+ "I want to plan a three-week backpacking trip through Europe. I have a student’s budget, and I love finding local street food and open markets. Can you suggest an itinerary for me?",
62
+ "Pick [X] cities for a [Y]-day trip in [location]"
63
+ ]
64
+ },
65
+ {
66
+ "title": "Music",
67
+ "template": [
68
+ "Write a lyrical verse in the style of [artist] about [topic]",
69
+ "I want to make a music video, but I’m not sure what concept to use. Can you help me come up with a concept?",
70
+ "I want to write a midi file. Can you provide python3 code that writes a simple tune using a for loop to add each note?",
71
+ "Create a poem or song for [target audience] that explains <topic of your choice>. The song should have a distinct character and traits for each participant, as well as punctuation such as.,!?, and so on. Make it last as long as possible."
72
+ ]
73
+ },
74
+ {
75
+ "title": "Fun",
76
+ "template": [
77
+ "Tell me a joke about [topic of your choice]",
78
+ "Explain [topic of your choice] in a funny way",
79
+ "Write hilarious fan fiction about the Twilight saga.",
80
+ "Make Eminem-style jokes about Max Payne."
81
+ ]
82
+ },
83
+ {
84
+ "title": "UX",
85
+ "template": [
86
+ "Generate examples of UI design requirements for a [mobile app]",
87
+ "Generate a typography style guide for a [mobile application] in excel format.",
88
+ "What are the UI cases that need to be considered when designing a [burger menu]",
89
+ "How can I design a [law firm website] in a way that conveys [trust and authority]"
90
+ ]
91
+ }
92
+ ]