-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlamatic-config.json
More file actions
52 lines (52 loc) · 1.39 KB
/
lamatic-config.json
File metadata and controls
52 lines (52 loc) · 1.39 KB
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
{
"flows": {
"step1": {
"name": "Generate Steps",
"workflowId": "38*********************************6",
"description": "Generates high-level reasoning steps for the query",
"mode": "sync",
"expectedOutput": "steps",
"inputSchema": {
"query": "string",
"history": "array"
},
"outputSchema": {
"steps": "string"
}
},
"step2": {
"name": "Process Steps",
"workflowId": "f1*********************************9",
"description": "Processes the generated steps into research queries + links",
"mode": "sync",
"dependsOn": ["step1"],
"expectedOutput": ["result", "links"],
"inputSchema": {
"steps": "string"
},
"outputSchema": {
"result": "string",
"links": "array"
}
},
"step3": {
"name": "Final Writer",
"workflowId": "50*********************************b",
"description": "Takes query and research results and generates the final markdown answer",
"mode": "sync",
"dependsOn": ["step2"],
"expectedOutput": "answer",
"inputSchema": {
"query": "string",
"research": "array"
},
"outputSchema": {
"answer": "string"
}
}
},
"api": {
"endpoint": "https://****************************/graphql",
"projectId": "338****************************d6c"
}
}