Documentation Index
Fetch the complete documentation index at: https://docs.opper.ai/llms.txt
Use this file to discover all available pages before exploring further.
Source:
opper-ai/opper-sdks. The agent layer ships inside the opperai package, so there’s nothing extra to install.Build your first agent
Set your API key
client={"api_key": "..."} (Python) or client: { apiKey: "..." } (TypeScript) on the Agent constructor.Run an agent
add(5, 3) = 8, then multiply(8, 2) = 16, then returns. Every tool call is captured in result.meta.tool_calls (Python) / result.meta.toolCalls (TS).What’s next
Tools
Define tools the agent can call.
Structured output
Return validated, typed data instead of free text.
Streaming
Watch the agent work as it happens.
Multi-agent
Compose specialists into a coordinator.