-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.json
286 lines (286 loc) · 12.8 KB
/
templates.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
{
"categories": [
{
"name": "Workspaces",
"description": "Templates for Halerium workspaces",
"templates": [
{
"name": "Strategy Workspace",
"isOverview": false,
"description": "All files and folders of the data strategy workspace",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"workspace_name": "DataStrategy",
"source_directory": "templates/templates/workspace_templates/strategy_workspace",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Project Workspace",
"isOverview": false,
"description": "All files and folders for a data project workspace",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"folder_name": "__new_workspace__",
"workspace_name": "New Workspace",
"source_directory": "templates/workspace_templates/project_template",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Workflow",
"description": "Templates facilitating the Halerium workflow",
"templates": [
{
"name": "Data Strategy Workshop",
"isOverview": false,
"description": "Board for a new data strategy workshop",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/workflow_templates/new_workshop",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Data Prototype",
"isOverview": false,
"description": "Folder structure for a new data analysis prototype.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"prototype_name": "new prototype",
"source_directory": "templates/workflow_templates/new_prototype",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Chatbots",
"description": "Custom chatbots for questionnaires etc.",
"templates": [
{
"name": "Polybot",
"isOverview": false,
"description": "Start a chatbot with a dedicated frontend. The bot supports various personalities.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/chatbots/polybot",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": [
{
"type": "board",
"path": "polybot.board",
"active": true
}
]
}
]
},
{
"name": "Image Generation Prompts",
"description": "Boards with Prompt-Trees for image generation.",
"templates": [
{
"name": "Stable Diffusion Generator",
"isOverview": false,
"description": "Create prompts for Stable Diffusion",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/image_generation/stable_diffusion",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Generic Prompts",
"description": "Boards with Prompt-Trees for generic tasks.",
"templates": [
{
"name": "Document Chatbot",
"isOverview": false,
"description": "Perform document-based inquiries, providing instant, accurate responses based on the content of specific documents.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/generic/document_chatbot",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Meeting Report Generator",
"isOverview": false,
"description": "Efficiently capture, organize, and present key takeaways, decisions, and action items from meetings.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/generic/meeting_report_generator",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Bot vs Bot",
"isOverview": false,
"description": "Use two bots to complete a task.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/generic/bot_vs_bot",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Blogpost with Image Generator",
"isOverview": false,
"description": "Use Text- and Imagebots to generate a Blogpost on any topic.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/generic/blogpost_with_image",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Bot Generator",
"isOverview": false,
"description": "Generate a bot to complete a task.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/generic/bot_generator",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
},
{
"name": "Enhanced Bots",
"description": "Bots enhanced by plugins and functions.",
"templates": [
{
"name": "Bots with Plugins",
"isOverview": false,
"description": "Create boards in which ChatGPT has access to customizable functions such as code execution and file reading ",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/enhanced_bots/bots_with_plugins",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": [
{
"type": "board",
"path": "START_FUNCTIONSERVER.board",
"active": true
}
]
}
]
},
{
"name": "Code Generation Prompts",
"description": "Boards with Prompt-Trees for code generation tasks.",
"templates": [
{
"name": "Code Refactoring and Review",
"isOverview": false,
"description": "Refactor and Review existing code.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/code_generation/code_refactoring_and_review",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Code Comments and Documentation Generator",
"isOverview": false,
"description": "Generate insightful code comments and comprehensive documentation.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/code_generation/code_comments_and_documentation_generator",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Interactive Python Coder",
"isOverview": false,
"description": "Generate, execute and debug Python code with a bot.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/code_generation/python_coder",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
},
{
"name": "Code and Unit Tests Generator",
"isOverview": false,
"description": "Generate foundational code structures and corresponding unit tests based on user-defined specifications.",
"automaticArguments": {
"author_name": "{{user.name}}",
"author_initials": "{{user.initials}}",
"timestamp": "{{timestamp}}",
"source_directory": "templates/code_generation/code_and_unit_tests_generator",
"target_directory": "{{directoryPath}}"
},
"userArguments": {},
"files": []
}
]
}
]
}