Orq MCP is live: Use natural language to interrogate traces, spot regressions, and experiment your way to optimal AI configurations. Available in Claude Desktop, Claude Code, Cursor, and more. Start now →
Build production AI agents with Agno and Orq.ai’s AI Router. Create tool-using agents with complete observability and access to 300+ LLMs.
AI Router
Route your LLM calls through the AI Router with a single base URL change. Zero vendor lock-in: always run on the best model at the lowest cost for your use case.
Observability
Instrument your code with OpenTelemetry to capture traces, logs, and metrics for every LLM call, agent step, and tool use.
Agno is a Python framework for building production-ready AI agents with structured workflows, tool integration, and multi-agent orchestration. By connecting Agno to Orq.ai’s AI Router, you get access to 300+ models for your agents with a single configuration change.
import osfrom agno.agent import Agentfrom agno.models.openai.like import OpenAILikefrom agno.team import Teamllm = OpenAILike( id="openai/gpt-4o", api_key=os.getenv("ORQ_API_KEY"), base_url="https://api.orq.ai/v2/router",)researcher = Agent( name="Researcher", model=llm, instructions="You research topics and provide accurate, concise facts.", markdown=True,)writer = Agent( name="Writer", model=llm, instructions="You take research and turn it into clear, engaging content.", markdown=True,)team = Team( members=[researcher, writer], model=llm, instructions="Collaborate to produce well-researched, well-written content.", markdown=True,)team.print_response("Write a short paragraph about renewable energy benefits.")