Data Model
Primary Entities
Entity
Description
Flow Structure (JSON)
jsonCopyEdit{
"id": "flow-abc",
"name": "Simple LLM Chain",
"nodes": [
{
"id": "node-input",
"type": "input",
"data": {},
"position": { "x": 100, "y": 200 }
},
{
"id": "node-llm",
"type": "chat-model",
"data": {
"model": "gpt-4",
"prompt": "{{input}}"
},
"position": { "x": 300, "y": 200 }
}
],
"edges": [
{ "source": "node-input", "target": "node-llm" }
]
}Database Schema (Simplified)
Last updated