Fix gpt-5 input context limit (#4619)

This commit is contained in:
Angie Jones
2025-09-11 23:05:02 -05:00
committed by GitHub
parent cfce5f75b9
commit c1c4dd5000
+1 -1
View File
@@ -17,7 +17,7 @@ pub enum ConfigError {
static MODEL_SPECIFIC_LIMITS: Lazy<Vec<(&'static str, usize)>> = Lazy::new(|| {
vec![
// openai
("gpt-5", 272_000),
("gpt-5", 400_000),
("gpt-4-turbo", 128_000),
("gpt-4.1", 1_000_000),
("gpt-4-1", 1_000_000),