Router
One agent classifies the request; a specialist chosen by that classification answers it. Scale an assistant with a cheap router plus focused specialists instead of one giant prompt. The reply shows which specialist handled it.
Showcase — Router
One agent classifies the request; a specialist chosen by that classification answers it. Scale an assistant with a cheap router plus focused specialists instead of one giant prompt. The reply shows which specialist handled it.
Run
bash bootstrap-secrets.sh # reads ../../../../.env, writes secrets/
docker compose up --build # default: PROVIDER=openai
Open http://localhost:3000. Gemini: PROVIDER=gemini docker compose up --build.
What's where
backend/ai_openai.py/backend/ai_gemini.py— a router agent + four specialists.frontend/app/page.tsx— message box, routed answer.
Stop
docker compose down
Run locally
Download the project as a ZIP and run it with Docker. Brings up a FastAPI backend + Next.js frontend on localhost:3000.
unzip router.zip
cd router
bash bootstrap-secrets.sh # one-time: pulls API keys into ./secrets
docker compose up --build # default provider: openai
# or: PROVIDER=gemini docker compose up --build
Type some input, pick a provider, and run the same code shown in Source against the live API. Sign-in required.
The same modules the Run button hits. The whole project (frontend, Dockerfile, compose) is in the ZIP under README.
backend/ai_openai.py
"""Showcase 2 (OpenAI): a router with specialist agents.
One agent classifies the request; another, chosen by that classification, answers
it. This is how you scale an assistant without one giant prompt: a cheap router
plus focused specialists, each expert at one thing. The reply shows which
specialist handled it.
"""
from openai import OpenAI
_client = OpenAI()
_MODEL = "gpt-5.4-nano"
_SPECIALISTS = {
"billing": "You are a billing specialist. Help with payments, invoices, refunds, and plan changes. Be precise about money.",
"technical": "You are a technical support engineer. Help debug errors and explain how-tos clearly, with steps.",
"sales": "You are a friendly sales rep. Explain plans and features and gently encourage the right upgrade.",
"general": "You are a helpful general assistant.",
}
def _agent(system: str, user: str) -> str:
return _client.responses.create(model=_MODEL, instructions=system, input=[{"role": "user", "content": user}]).output_text
def run(message: str) -> str:
m = message.strip()
if not m:
return "Send a message to route (a billing, technical, sales, or general question)."
route = _agent(
"You are a router. Classify the user's message into exactly one of: billing, technical, "
"sales, general. Reply with ONLY that one word.", m,
).strip().lower()
route = route if route in _SPECIALISTS else "general"
answer = _agent(_SPECIALISTS[route], m)
return f"[routed to: {route}]\n\n{answer}"
backend/ai_gemini.py
"""Showcase 2 (Gemini): a router with specialist agents.
Same classify-then-dispatch, on Gemini.
"""
import os
from google import genai
from google.genai import types
_client = genai.Client(api_key=os.environ["GEMINI_API_KEY"])
_MODEL = "gemini-3.1-flash-lite"
_SPECIALISTS = {
"billing": "You are a billing specialist. Help with payments, invoices, refunds, and plan changes. Be precise about money.",
"technical": "You are a technical support engineer. Help debug errors and explain how-tos clearly, with steps.",
"sales": "You are a friendly sales rep. Explain plans and features and gently encourage the right upgrade.",
"general": "You are a helpful general assistant.",
}
def _agent(system: str, user: str) -> str:
r = _client.models.generate_content(
model=_MODEL,
contents=[types.Content(role="user", parts=[types.Part(text=user)])],
config=types.GenerateContentConfig(system_instruction=system),
)
return r.text or ""
def run(message: str) -> str:
m = message.strip()
if not m:
return "Send a message to route (a billing, technical, sales, or general question)."
route = _agent(
"You are a router. Classify the user's message into exactly one of: billing, technical, "
"sales, general. Reply with ONLY that one word.", m,
).strip().lower()
route = route if route in _SPECIALISTS else "general"
answer = _agent(_SPECIALISTS[route], m)
return f"[routed to: {route}]\n\n{answer}"
Project files
.gitignoreREADME.es.mdREADME.mdbackend/Dockerfilebackend/ai_gemini.pybackend/ai_openai.pybackend/main.pybackend/requirements.txtbootstrap-secrets.shdocker-compose.ymlfrontend/Dockerfilefrontend/app/layout.tsxfrontend/app/page.tsxfrontend/next.config.tsfrontend/package.jsonfrontend/tsconfig.json