-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenario.json
More file actions
40 lines (37 loc) · 1.01 KB
/
scenario.json
File metadata and controls
40 lines (37 loc) · 1.01 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
{
"scenario_id": "cross-service-coordination.demo.v1",
"title": "Cross-service coordination - order pipeline",
"description": "Inventory check, payment, and shipping coordinated through intent lifecycle. No central orchestrator needed.",
"agents": [
{
"role": "order_coordinator",
"address": "order-coordinator-demo",
"display_name": "Order Coordinator",
"delivery_mode": "stream",
"create_if_missing": true
}
],
"workflow": {
"steps": [
{
"step_id": "coordinate_order",
"tool_id": "tool.agent.task.v1",
"assigned_to": "order_coordinator",
"step_deadline_seconds": 120
}
]
},
"intent": {
"type": "intent.order.coordinate.v1",
"payload": {
"order_id": "ORD-7734",
"items": [
{"sku": "LAPTOP-PRO", "quantity": 1},
{"sku": "USB-CABLE", "quantity": 3}
],
"customer_id": "CUST-9012",
"shipping_address": "456 Oak Ave, Springfield, US"
},
"max_delivery_attempts": 3
}
}