cookbook/90_models/tokenlab/README.md
Note: Fork and clone this repository if needed.
TokenLab is an AI model gateway with an OpenAI-compatible /v1 API, live model discovery at https://api.tokenlab.sh/v1/models, and additional native endpoint families such as Responses, Anthropic Messages, and Gemini-compatible APIs.
python3 -m venv ~/.venvs/aienv
source ~/.venvs/aienv/bin/activate
TOKENLAB_API_KEYexport TOKENLAB_API_KEY=***
uv pip install -U openai agno
python cookbook/90_models/tokenlab/basic.py
You can also use the string syntax:
from agno.agent import Agent
agent = Agent(model="tokenlab:gpt-5.4-mini")