A collection of working demos showing what you can build with Agentspan — durable AI agents that survive process restarts, multi-agent pipelines, and human-in-the-loop workflows.
| Demo | What it shows |
|---|---|
| 01 Weather Agent | Durable execution — agent survives process restarts |
| 02 Research Pipeline | Multi-agent orchestration — 4 agents in sequence |
| 03 Fraud Review | Human-in-the-loop — AI flags, human decides |
- Python 3.10+
- Agentspan server running locally at
http://localhost:6767 - OpenAI API key configured in Agentspan
git clone https://github.com/YOUR_USERNAME/agentspan-demo
cd agentspan-demopython -m venv agentspan-env
source agentspan-env/bin/activatepip install agentspan requestsMake sure your local Agentspan server is running at http://localhost:6767 with an OpenAI API key configured:
agentspan server start
agentspan credentials set OPENAI_API_KEY sk-...See agentspan.ai/docs for full setup instructions.
cd demos/01_weather_agent
python weather_agent.pycd demos/02_research_pipeline
python research_pipeline.py "AI agents in production 2026"cd demos/03_fraud_review
python fraud_review.pySee each demo's README.md for full details and example scenarios.
- All demos require the Agentspan server running locally
- Demo 2 saves output to
demos/02_research_pipeline/output/ - Demo 3 uses interactive terminal input for approve/deny