add configurable orchestrator_model_context_length override (default 8192)

Made-with: Cursor
This commit is contained in:
Adil Hafeez 2026-04-15 15:48:59 -07:00
parent aff9164c57
commit fba744d2b1
6 changed files with 16 additions and 2 deletions

View file

@ -233,6 +233,7 @@ pub struct Overrides {
pub use_agent_orchestrator: Option<bool>,
pub llm_routing_model: Option<String>,
pub agent_orchestration_model: Option<String>,
pub orchestrator_model_context_length: Option<usize>,
}
#[derive(Debug, Clone, Serialize, Deserialize, Default)]