Your First Workflow

Let's build your first workflow in Circuitry - a simple AI text processor.

Step 1: Open the Editor

  1. Navigate to the Editor
  2. 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

  1. The Start Node is already on your canvas - it's always there as your workflow entry point!
  2. Click on the Start node to select it
  3. In the right panel, add some input data:
{
  "message": "Hello, Circuitry!"
}

Step 3: Add an Agent Node

  1. Drag an Agent Node from the sidebar
  2. Place it to the right of your Start node
  3. 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

  1. Click on the output port (bottom) of the Start node
  2. Drag to the input port (top) of the Agent node
  3. Release to create the connection

Step 6: Execute the Workflow

  1. Click the Execute button in the top toolbar
  2. Watch as nodes light up during execution
  3. 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