mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
24 lines
481 B
JSON
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"}
|
|
}
|
|
]
|
|
}
|