diff --git a/crates/open_ai/src/open_ai.rs b/crates/open_ai/src/open_ai.rs index ecb0828ee6..6be5327c04 100644 --- a/crates/open_ai/src/open_ai.rs +++ b/crates/open_ai/src/open_ai.rs @@ -120,14 +120,10 @@ impl Model { pub fn max_output_tokens(&self) -> Option { match self { - Self::ThreePointFiveTurbo => Some(4096), - Self::Four => Some(8192), - Self::FourTurbo => Some(4096), - Self::FourOmni => Some(4096), - Self::FourOmniMini => Some(16384), Self::Custom { max_output_tokens, .. } => *max_output_tokens, + _ => None, } } }