2026-03-16 12:05:30 -07:00
|
|
|
version: v0.3.0
|
|
|
|
|
|
|
|
|
|
overrides:
|
use plano-orchestrator for LLM routing, remove arch-router
Replace RouterService/RouterModelV1 (arch-router prompt) with
OrchestratorService/OrchestratorModelV1 (plano-orchestrator prompt)
for LLM routing. This ensures the correct system prompt is used when
llm_routing_model points at a Plano-Orchestrator model.
- Extend OrchestratorService with session caching, ModelMetricsService,
top-level routing preferences, and determine_route() for LLM routing
- Delete RouterService, RouterModel trait, RouterModelV1, and
ARCH_ROUTER_V1_SYSTEM_PROMPT
- Unify defaults to Plano-Orchestrator / plano-orchestrator
- Update CLI config generator, demos, docs, and config schema
Made-with: Cursor
2026-04-15 13:11:17 -07:00
|
|
|
llm_routing_model: plano/Plano-Orchestrator
|
2026-03-16 12:05:30 -07:00
|
|
|
|
|
|
|
|
listeners:
|
|
|
|
|
- type: model
|
|
|
|
|
name: model_listener
|
|
|
|
|
port: 12000
|
|
|
|
|
|
|
|
|
|
model_providers:
|
|
|
|
|
|
use plano-orchestrator for LLM routing, remove arch-router
Replace RouterService/RouterModelV1 (arch-router prompt) with
OrchestratorService/OrchestratorModelV1 (plano-orchestrator prompt)
for LLM routing. This ensures the correct system prompt is used when
llm_routing_model points at a Plano-Orchestrator model.
- Extend OrchestratorService with session caching, ModelMetricsService,
top-level routing preferences, and determine_route() for LLM routing
- Delete RouterService, RouterModel trait, RouterModelV1, and
ARCH_ROUTER_V1_SYSTEM_PROMPT
- Unify defaults to Plano-Orchestrator / plano-orchestrator
- Update CLI config generator, demos, docs, and config schema
Made-with: Cursor
2026-04-15 13:11:17 -07:00
|
|
|
- model: plano/Plano-Orchestrator
|
|
|
|
|
base_url: http://plano-orchestrator:10000
|
2026-03-16 12:05:30 -07:00
|
|
|
|
|
|
|
|
- model: openai/gpt-4o-mini
|
|
|
|
|
access_key: $OPENAI_API_KEY
|
|
|
|
|
default: true
|
|
|
|
|
|
|
|
|
|
- model: openai/gpt-4o
|
|
|
|
|
access_key: $OPENAI_API_KEY
|
|
|
|
|
routing_preferences:
|
|
|
|
|
- name: complex_reasoning
|
|
|
|
|
description: complex reasoning tasks, multi-step analysis, or detailed explanations
|
|
|
|
|
|
|
|
|
|
- model: anthropic/claude-sonnet-4-20250514
|
|
|
|
|
access_key: $ANTHROPIC_API_KEY
|
|
|
|
|
routing_preferences:
|
|
|
|
|
- name: code_generation
|
|
|
|
|
description: generating new code, writing functions, or creating boilerplate
|
|
|
|
|
|
|
|
|
|
tracing:
|
|
|
|
|
random_sampling: 100
|