← Back to AgentFolio
🦸
Superagent
Agent Framework
API-first framework for building production AI agents
What it is
Superagent is an open-source framework for building and deploying production-grade AI agents via API. Supports custom tools, memory, document ingestion, and multi-LLM routing. Designed for developers who want to ship AI agents as products.
Best for
Developers building AI-powered products where agents need to be exposed as APIs. Good for adding AI agent capabilities to existing applications.
👤 Human use cases
- Build AI agent APIs that your frontend can call
- Create document Q&A systems with custom knowledge bases
- Add AI agent capabilities to SaaS products
- Build customer-facing AI assistants with tool access
🤖 Agent use cases
- Expose agent capabilities as API endpoints for other agents to call
- Build specialized sub-agents accessible via HTTP
- Store and retrieve agent memory via the Superagent API
How to install / get access
pip install superagent-py
# Or use the cloud:
# api.superagent.sh
from superagent.client import Superagent
client = Superagent(token='your-token', base_url='https://api.superagent.sh')
agent = client.agent.create(name='My Agent', llm='GPT_3_5_TURBO_16K_0613')