Reference agent examples
Framework-specific dispatch wrappers — OpenAI Agents, Anthropic, Strands, and barebones Python.
Each example is a complete, runnable /dispatch wrapper for one framework:
ping short-circuit, inbound auth, proxy-shimmed tools, and the v1 response
envelope. Pick the one matching your stack, or the barebones Python template
if you have no framework dependency.
For Python agents, the fastest path is the
pipelines.odyssey SDK, which
handles envelope parsing, inbound auth, the proxy shim, and response shaping
for you. These standalone templates show the same flow spelled out by hand —
useful for non-Python runtimes or when you want zero SDK dependency. The
porting contract behind all of them lives in
Porting without the SDK.
OpenAI Agents SDK
A FastAPI wrapper around the OpenAI Agents SDK with proxied function tools.
Anthropic Claude
A FastAPI wrapper running the Anthropic tool-use loop through the proxy.
Strands
A FastAPI wrapper around Strands Agents with proxied tools.
Python from scratch
A minimal httpx-only template with no agent framework dependency.