Skip to main content

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.

The Agent SDK ships inside the unified opperai package — there is no separate install.
pip install opperai
# or
uv add opperai
# or
poetry add opperai
LanguageMinimum runtimeNotes
Python3.10+Pydantic optional: pip install opperai[pydantic] for typed output_schema.
TypeScriptNode.js 18+Requires Zod v4 (zod@4). The zod@3.25.x dual-mode build is not supported.

API key

Set OPPER_API_KEY in the environment, or pass client config explicitly:
from opperai.agent import Agent

agent = Agent(
    name="my-agent",
    instructions="Be helpful.",
    client={"api_key": "op-..."},
)
Get a key at platform.opper.ai.

Verify

import opperai
print(opperai.__version__)
Next: Quickstart.