-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-inception.json
44 lines (44 loc) · 1.21 KB
/
template-inception.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
{
"assistant": {
"id": "",
"name": "Name of the ASSISTANT",
"instruction": "HERE SHOULD BE THE INSTRUCTION FOR THE ASSISTANT.",
"threads": [
"REPLACE THIS A LIST OF THREADS THE ASSISTANT SHOULD RUN THROUGH ONE AFTER ANOTHER."
]
},
"recipe": [
{
"attr": "uniqueAttributeNameForASelectInput",
"inputType": "select",
"details": {
"selectOptions": [
{
"label": "a1",
"value": "a1"
},
{
"label": "b1",
"value": "b1"
},
{
"label": "c1",
"value": "c1"
}
],
"defaultValue": "IF A DEFAULT VALUE MAKES SENSE, PUT IT HERE, BUT EMPTY STRING IS ABSOLUTELY FINE.",
"text": "PLACE THE COMMAND FOR THE USER INTERACTION HERE.",
"summaryText": "THIS FIELD WILL BE USED TO ADD CONTEXT TO THE USER'S RESPONSE."
}
},
{
"attr": "uniqueAttributeNameForAnInput",
"inputType": "input",
"details": {
"defaultValue": "",
"text": "PLACE THE COMMAND FOR THE USER INTERACTION HERE.",
"summaryText": "THIS FIELD WILL BE USED TO ADD CONTEXT TO THE USER'S RESPONSE."
}
}
]
}