Skip to main content

Documentation Index

Fetch the complete documentation index at: https://katavenai.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

pip install kataven
Requires Python 3.10+. Single dependency: requests.

Configure

export KATAVEN_API_KEY="eyJhbGciOi..."   # bearer token
export KATAVEN_ACCOUNT_ID="acme"         # account slug
Or pass explicitly:
client = KatavenClient(
    api_key="eyJhbGciOi...",
    account_id="acme",
    base_url="https://api.kataven.ai/hub-api",  # optional
    timeout=30,
)

Verify

from kataven import KatavenClient
client = KatavenClient()
print(client.agents.list())
If that returns a list (even an empty one), you’re set up.

Editable install (for SDK contributors)

git clone https://github.com/kataven/kataven-hub
cd kataven-hub/packages/python-sdk
pip install -e .[dev]
pytest