Update orchestrator_model_v1.rs

Update the default value of max token length for the orchestration model
This commit is contained in:
nehcgs 2026-04-15 13:54:15 -07:00
parent 6f4f6062fb
commit aff9164c57

View file

@ -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;