dograh/api/tests/dto_fixtures/no_start_node.json
2026-05-08 16:02:51 +05:30

24 lines
481 B
JSON

{
"nodes": [
{
"id": "a",
"type": "agentNode",
"position": {"x": 0, "y": 0},
"data": {"name": "Agent", "prompt": "Talk to the caller."}
},
{
"id": "e",
"type": "endCall",
"position": {"x": 200, "y": 0},
"data": {"name": "End", "prompt": "Say goodbye."}
}
],
"edges": [
{
"id": "a-e",
"source": "a",
"target": "e",
"data": {"label": "agent to end", "condition": "always"}
}
]
}