-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow.json
More file actions
47 lines (47 loc) · 1.05 KB
/
workflow.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"schema_version": 1,
"name": "customer-support-triage",
"version": "1.0.0",
"description": "Support ticket triage: receive ticket, LLM triage, approval gate for high severity, route to team.",
"steps": {
"receive": {
"kind": "source",
"source": "steps/receive.ax",
"capabilities": [],
"outputs": {
"ticket": "String"
}
},
"triage": {
"kind": "source",
"source": "steps/triage.ax",
"capabilities": [],
"inputs": {
"ticket": "receive.result"
},
"outputs": {
"severity": "Int",
"team": "String"
}
},
"approve": {
"kind": "approval_gate",
"required_role": "support_lead",
"condition": "severity >= 3",
"depends_on": ["triage"]
},
"route": {
"kind": "source",
"source": "steps/route.ax",
"capabilities": [],
"inputs": {
"severity": "triage.result",
"team": "triage.result"
},
"depends_on": ["approve"]
}
},
"edges": [
["receive", "triage"]
]
}