-
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.03 KB
/
scenario.json
File metadata and controls
40 lines (37 loc) · 1.03 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": "inngest-alternative.demo.v1",
"title": "Inngest alternative - job processing with durable delivery",
"description": "Job processor receives and processes jobs via SSE stream delivery. No Inngest queue, no function configuration, no event schemas. One intent with durable delivery built in.",
"agents": [
{
"role": "job_processor",
"address": "inngest-alt-processor-demo",
"display_name": "Job Processor Agent",
"delivery_mode": "stream",
"create_if_missing": true
}
],
"workflow": {
"steps": [
{
"step_id": "process_job",
"tool_id": "tool.agent.task.v1",
"assigned_to": "job_processor",
"step_deadline_seconds": 120
}
]
},
"intent": {
"type": "intent.jobs.process.v1",
"payload": {
"job_id": "JOB-2026-1234",
"job_type": "invoice_generation",
"customer": "enterprise-corp",
"params": {
"period": "2026-Q1",
"format": "pdf"
}
},
"max_delivery_attempts": 3
}
}