Your First Workflow
Let's build your first workflow in Circuitry - a simple AI text processor.
Step 1: Open the Editor
- Navigate to the Editor
- You'll see three main areas:
- Left sidebar with available nodes
- Center canvas for building (with Start node already present)
- Right panel for configuration
Step 2: Configure the Start Node
- The Start Node is already on your canvas - it's always there as your workflow entry point!
- Click on the Start node to select it
- In the right panel, add some input data:
{
"message": "Hello, Circuitry!"
}
Step 3: Add an Agent Node
- Drag an Agent Node from the sidebar
- Place it to the right of your Start node
- Click on the Agent node to configure it
Step 4: Configure the Agent
In the right panel, set:
- Model: GPT-5 (or your preferred model)
- Prompt:
Translate this message to French and Spanish:
{{input.message}}
Format as JSON with keys "french" and "spanish"
- Temperature: 0.3 (for consistent translations)
Step 5: Connect the Nodes
- Click on the output port (bottom) of the Start node
- Drag to the input port (top) of the Agent node
- Release to create the connection
Step 6: Execute the Workflow
- Click the Execute button in the top toolbar
- Watch as nodes light up during execution
- View the results in the Agent node
Expected Output
{
"french": "Bonjour, Circuitry!",
"spanish": "¡Hola, Circuitry!"
}
Congratulations!
You've built your first Circuitry workflow! 🎉
Next Steps
- Try modifying the prompt
- Add more nodes to process the translation
- Explore different node types
- Learn about Node Types