mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-10 08:05:22 +02:00
24 lines
503 B
JSON
24 lines
503 B
JSON
{
|
|
"nodes": [
|
|
{
|
|
"id": "s",
|
|
"type": "startCall",
|
|
"position": {"x": 0, "y": 0},
|
|
"data": {"name": "Start", "prompt": "Greet the caller."}
|
|
},
|
|
{
|
|
"id": "a",
|
|
"type": "agentNode",
|
|
"position": {"x": 200, "y": 0},
|
|
"data": {"name": "Agent", "prompt": "Continue the conversation."}
|
|
}
|
|
],
|
|
"edges": [
|
|
{
|
|
"id": "a-s",
|
|
"source": "a",
|
|
"target": "s",
|
|
"data": {"label": "loop back to start", "condition": "always"}
|
|
}
|
|
]
|
|
}
|