Documentation
Diaflow Documentation
Everything you need to build, deploy, and observe autonomous agents. Start with the quickstart and ship your first agent in under 10 minutes.
quickstart.py
pip install diaflow
from diaflow import Agent
agent = Agent(
llm="gpt-4o",
api_key="df_..."
)
result = agent.run(
"Summarize this doc"
)Popular guides
Building a multi-agent pipeline
Orchestration patterns and DAG topology
Connecting a vector store
Pinecone, Weaviate, pgvector setup
Writing custom tools
@tool decorator and schema generation
Trace explorer guide
Debugging agent runs step-by-step
Retry and fallback policies
Configuring resilience for production
Deploying to production
Env vars, secrets, scheduling, webhooks
Managing LLM costs
Budget alerts and token optimization
API keys and RBAC
Team access controls and key management
Full documentation at docs.letsdiaflow.com
This page is a landing overview. Full documentation, including versioned changelogs, SDK type stubs, and interactive examples, lives at the docs site.
Open full documentation