734 B
734 B
Your Project Title
Project Requirements
A description of the project requirements.
Utility Functions
- Call LLM (
utils/call_llm.py)
Flow Design
- First Node
- Second Node
- Third Node
Flow Diagram
flowchart TD
firstNode[First Node] --> secondNode[Second Node]
secondNode --> thirdNode[Third Node]
Data Structure
The shared memory structure will be organized as follows:
shared = {
"key": "value"
}
Node Designs
1. First Node
- Purpose: What the node does
- Design: Regular Node (no Batch/Async)
- Data Access:
- Read: "key" from shared store
- Write: "key" to shared store
2. Second Node
...