Fix gpt-5 input context limit (#4619)
This commit is contained in:
@@ -17,7 +17,7 @@ pub enum ConfigError {
|
|||||||
static MODEL_SPECIFIC_LIMITS: Lazy<Vec<(&'static str, usize)>> = Lazy::new(|| {
|
static MODEL_SPECIFIC_LIMITS: Lazy<Vec<(&'static str, usize)>> = Lazy::new(|| {
|
||||||
vec![
|
vec![
|
||||||
// openai
|
// openai
|
||||||
("gpt-5", 272_000),
|
("gpt-5", 400_000),
|
||||||
("gpt-4-turbo", 128_000),
|
("gpt-4-turbo", 128_000),
|
||||||
("gpt-4.1", 1_000_000),
|
("gpt-4.1", 1_000_000),
|
||||||
("gpt-4-1", 1_000_000),
|
("gpt-4-1", 1_000_000),
|
||||||
|
|||||||
Reference in New Issue
Block a user