From aff9164c57f3360fefe72d513051a2b7a9447623 Mon Sep 17 00:00:00 2001 From: nehcgs <54548843+nehcgs@users.noreply.github.com> Date: Wed, 15 Apr 2026 13:54:15 -0700 Subject: [PATCH] Update orchestrator_model_v1.rs Update the default value of max token length for the orchestration model --- crates/brightstaff/src/router/orchestrator_model_v1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/brightstaff/src/router/orchestrator_model_v1.rs b/crates/brightstaff/src/router/orchestrator_model_v1.rs index ec4d2d12..75e5c586 100644 --- a/crates/brightstaff/src/router/orchestrator_model_v1.rs +++ b/crates/brightstaff/src/router/orchestrator_model_v1.rs @@ -8,7 +8,7 @@ use tracing::{debug, warn}; use super::orchestrator_model::{OrchestratorModel, OrchestratorModelError}; -pub const MAX_TOKEN_LEN: usize = 2048; // Default max token length for the orchestration model +pub const MAX_TOKEN_LEN: usize = 8192; // Default max token length for the orchestration model /// Custom JSON formatter that produces spaced JSON (space after colons and commas), same as JSON in python struct SpacedJsonFormatter;