From 1a905e8957e520659e8846a8e91789ac36bc53eb Mon Sep 17 00:00:00 2001 From: Douwe Osinga Date: Mon, 13 Oct 2025 10:13:48 -0400 Subject: [PATCH] Revert "Fix gpt-5 input context limit (#4619)" (#5135) Co-authored-by: Douwe Osinga --- crates/goose/src/model.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose/src/model.rs b/crates/goose/src/model.rs index cdae3dfd..8d0be7fb 100644 --- a/crates/goose/src/model.rs +++ b/crates/goose/src/model.rs @@ -17,7 +17,7 @@ pub enum ConfigError { static MODEL_SPECIFIC_LIMITS: Lazy> = Lazy::new(|| { vec![ // openai - ("gpt-5", 400_000), + ("gpt-5", 272_000), ("gpt-4-turbo", 128_000), ("gpt-4.1", 1_000_000), ("gpt-4-1", 1_000_000),