a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "a2a_multi_agent_orchestration",
|
|
"version": 1,
|
|
"schemaVersion": 2,
|
|
"description": "Durable multi-agent orchestration: call several remote A2A agents in parallel with FORK_JOIN, then JOIN their results. Each branch is an independent, crash-safe AGENT — if Conductor restarts mid-flight, every in-flight agent call resumes.",
|
|
"ownerEmail": "a2a@example.com",
|
|
"tasks": [
|
|
{
|
|
"name": "fork_agents",
|
|
"taskReferenceName": "fork",
|
|
"type": "FORK_JOIN",
|
|
"forkTasks": [
|
|
[
|
|
{
|
|
"name": "call_flights_agent",
|
|
"taskReferenceName": "flights",
|
|
"type": "AGENT",
|
|
"inputParameters": {
|
|
"agentUrl": "${workflow.input.flightsAgentUrl}",
|
|
"text": "Find flights for: ${workflow.input.request}"
|
|
}
|
|
}
|
|
],
|
|
[
|
|
{
|
|
"name": "call_hotels_agent",
|
|
"taskReferenceName": "hotels",
|
|
"type": "AGENT",
|
|
"inputParameters": {
|
|
"agentUrl": "${workflow.input.hotelsAgentUrl}",
|
|
"text": "Find hotels for: ${workflow.input.request}"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
{
|
|
"name": "join_agents",
|
|
"taskReferenceName": "join",
|
|
"type": "JOIN",
|
|
"joinOn": ["flights", "hotels"]
|
|
}
|
|
]
|
|
}
|