Quick Start Workflow

Command Palette

Search for a command to run...

Back

Quick Start Workflow

v1.0.0

A minimal workflow demonstrating sequential agent execution - perfect for getting started with workflow orchestration.

tutorialdemogetting-started
Workflow Structure
Nodes2
Edges1
Formatpython
TaskGet started with workflow orchestration by running a simple agent sequence
Content
Quick Start Workflow
====================
A minimal workflow demonstrating sequential agent execution.

This workflow takes a user query, analyzes it with the first agent, 
then passes the result to a response agent for final output.

Entry: analyzer

Nodes:
  - id: analyzer
    type: agent
    name: Query Analyzer
    description: "Analyzes the user query to determine intent"
    
  - id: responder
    type: agent
    name: Response Generator
    description: "Generates a helpful response based on analysis"

Edges:
  - source: analyzer
    target: responder
    label: "analysis_result"

Task: Accept user input, analyze intent, and generate appropriate response.
Related Content