OpenRouter Basic
Run a minimal OpenRouter agent with sync, streaming, and async response variants.
"""
Openrouter Basic
================
Cookbook example for `openrouter/chat/basic.py`.
"""
from agno.agent import Agent, RunOutput # noqa
from agno.models.openrouter import OpenRouter
import asyncio
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(model=OpenRouter(id="gpt-5.6-luna"), markdown=True)
# Get the response in a variable
# run: RunOutput = agent.run("Share a 2 sentence horror story")
# print(run.content)
# Print the response in the terminal
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
# --- Sync ---
agent.print_response("Share a 2 sentence horror story")
# --- Sync + Streaming ---
agent.print_response("Share a 2 sentence horror story", stream=True)
# --- Async ---
asyncio.run(agent.aprint_response("Share a 2 sentence horror story"))
# --- Async + Streaming ---
asyncio.run(agent.aprint_response("Share a 2 sentence horror story", stream=True))Run the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno openaiExport your OpenRouter API key
export OPENROUTER_API_KEY="your_openrouter_api_key_here"Use the full OpenRouter model ID
Replace each bare id="gpt-5.6-luna" with id="openai/gpt-5.6-luna". On the structured-output example, also replace id="gpt-4o-2024-08-06" with the same full Luna ID. Keep the JSON-mode/schema settings and other options. The OpenRouter catalog lists this model with tool and structured-output support; account and provider availability still apply.
Run the example
Save the code above as basic.py, then run:
python basic.pyFull source: cookbook/90_models/openrouter/chat/basic.py