10xScale Agentflow Tutorials¶
Welcome to 10xScale Agentflow! This tutorial series will guide you through building intelligent agents and multi-agent workflows, from basic graph construction to advanced patterns like streaming, persistence, and tool integration.
🎯 What You'll Learn¶
10xScale Agentflow is a lightweight Python framework for building agent graphs on top of LiteLLM. By the end of these tutorials, you'll understand how to:
- Build and execute agent workflows using
StateGraphand nodes - Manage conversation state and message flow with
AgentState - Create tool-calling agents using
ToolNodeand dependency injection - Add persistence with checkpointers and memory stores
- Stream real-time responses and monitor execution events
- Use prebuilt agent patterns for common scenarios
🚀 Prerequisites¶
Before diving in, ensure you have:
- Python 3.12+ installed
- Basic familiarity with async/await patterns
- Experience with LLM APIs (OpenAI, Gemini, etc.)
- Comfort with command-line tools and environment variables
Quick Setup¶
-
Install 10xScale Agentflow with your preferred LLM provider:
pip install 10xscale-agentflow[litellm] # Optional: add persistence and tools pip install 10xscale-agentflow[pg_checkpoint,mcp] -
Set up environment variables in
.env:# For LiteLLM examples OPENAI_API_KEY=your_openai_key # Or use Gemini # GEMINI_API_KEY=your_gemini_key -
Clone examples to experiment:
git clone https://github.com/10xHub/agentflow.git cd agentflow/examples/react python react_sync.py # Your first agent!
📚 Tutorial Path¶
Follow these tutorials in order for the best learning experience:
🏗️ Foundation¶
- Graph Fundamentals - Build your first agent with
StateGraph, nodes, and edges - State & Messages - Master conversation state and message schemas
- Tools & Dependency Injection - Create tool-calling agents with
ToolNode - React Agent Patterns - Complete guide to ReAct agents: basic patterns, DI, MCP, streaming
🔀 Control & Flow¶
- Control Flow & Routing - Conditional edges, interrupts, and error handling
- Persistence & Memory - Save state with checkpointers and stores
- Streaming & Events - Real-time responses and observability
🎯 Advanced Patterns¶
- Prebuilt Agents & Orchestration - Ready-to-use patterns and multi-agent workflows
💡 Learning Tips¶
- Run the examples: Every tutorial references working code in
examples/. Clone, modify, and experiment! - Start simple: Build a basic graph first, then add complexity gradually
- Use the console: The
ConsolePublishershows you what's happening under the hood - Debug with state: Use
ResponseGranularity.FULLto inspect complete execution state
📖 Additional Resources¶
- API Reference - Detailed documentation for all classes and methods
- Examples Directory - Runnable code for every major pattern
- PyProject.toml - Optional dependencies and their features
🔗 Quick Navigation¶
| Tutorial | Focus | Key Files |
|---|---|---|
| Graph Fundamentals | StateGraph, nodes, compilation | examples/react/react_sync.py |
| State & Messages | AgentState, message handling | agentflow/state/, agentflow/utils/message.py |
| Tools & DI | ToolNode, dependency injection | examples/react-injection/, examples/react-mcp/ |
| React Agents | Complete ReAct guide: basic, DI, MCP, streaming | examples/react*/ |
| Control Flow | Conditional routing, interrupts | examples/react/react_weather_agent.py |
| Persistence | Checkpointers, stores | agentflow/checkpointer/, agentflow/store/ |
| Streaming | Real-time responses, events | examples/react_stream/ |
| Advanced | Prebuilt agents, orchestration | agentflow/prebuilt/agent/ |
Ready to build your first agent? Start with Graph Fundamentals!