Building Workflows
Workflows are YAML definitions that chain tools together for autonomous execution.
Structure
name: Customer Support
description: Handle customer inquiries
steps:
- tool: search_knowledge_base
args: { query: "{user_input}" }
- tool: generate_response
args: { context: "{previous_output}" }
- tool: send_email
args: { body: "{previous_output}" }
Execution
Workflows run at $5/hour, billed per second. Average workflow costs $0.01-0.10 depending on
complexity.