The Infrastructure Layer for the OpenAI Agents SDK
- Runner
- real loop
- 50
- MCP tools
- 5
- SDKs, one layer
- 1 cmd
- docker compose up
agentFast is the production layer for the OpenAI Agents SDK. The SDK gives you the Runner loop, function tools, and hand-offs. agentFast adds memory, observability, guardrails, evals, and durable human-in-the-loop around it — nothing about the production layer is a second-class citizen here.
Real FunctionTools, real Runner
The tool registry is bridged as real FunctionTool instances and runs the real Runner loop — not a reimplementation.
Durable, crash-proof runs
Checkpoint-per-iteration to Postgres, so a killed process resumes from the exact step, no replay.
Observability upgrade
Beyond basic tracing: a full step tree with cost, latency, prompt-cache accounting, OTEL and LangSmith export.
Memory
Short-term buffer, long-term vector recall, episodic log and scratchpad, with compaction for long runs.
Guardrails
PII redaction before the model sees it, injection defense and token-bucket rate limits.
Durable human-in-the-loop
Gate risky tools; approvals execute exactly once via a database compare-and-set.
- 1Install with the OpenAI Agents extra
- 2Scaffold an agent
- 3Bring up the full stack
- 4Gate on quality
pip install -e ".[openai-agents,dev]"
agentfast new support --sdk openai_agents_sdk
cd support-agent && docker compose up
agentfast eval| OpenAI Agents SDK | agentFast on the SDK | |
|---|---|---|
| Runner loop, function tools, hand-offs | ✓ its core strength | Uses the SDK directly |
| Memory (vector + episodic) | — bring your own | ✓ Included |
| Observability + cost tracing | Basic tracing | Full step tree, OTEL, LangSmith |
| Guardrails (PII, safety, limits) | — bring your own | ✓ Included |
| Durable human-in-the-loop | — bring your own | Survives a crash, exactly-once |
| Evals in CI | — bring your own | ✓ Included |
| Working reference agent | Examples | SupportAgent, point it at your KB |
Read why the production layer is the real work, or see the comparisons.
agentFast is the production layer — memory, 50 tools, observability, evals, guardrails, human-in-the-loop — for LangGraph, CrewAI, the Claude & OpenAI Agent SDKs & Vanilla. Own it for life.
Get agentFast — from $89