From f46b94635dfa928f6e1103dc9c0edad6e3f41a28 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Fri, 12 Dec 2025 11:53:17 -0500 Subject: [PATCH] Don't default some of the model options in the extension --- crates/extension/src/extension_manifest.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/extension/src/extension_manifest.rs b/crates/extension/src/extension_manifest.rs index e010b5e258446be704b556d4169bfbe5d2d83870..3c6864a474a788896ea08edaadc13915be77a66b 100644 --- a/crates/extension/src/extension_manifest.rs +++ b/crates/extension/src/extension_manifest.rs @@ -314,19 +314,14 @@ pub struct LanguageModelManifestEntry { /// Display name for the model. pub name: String, /// Maximum input token count. - #[serde(default)] pub max_token_count: u64, /// Maximum output tokens (optional). - #[serde(default)] pub max_output_tokens: Option, /// Whether the model supports image inputs. - #[serde(default)] pub supports_images: bool, /// Whether the model supports tool/function calling. - #[serde(default)] pub supports_tools: bool, /// Whether the model supports extended thinking/reasoning. - #[serde(default)] pub supports_thinking: bool, }