diff --git a/src/config/config.rs b/src/config/config.rs index 1d11f55..d1109a7 100644 --- a/src/config/config.rs +++ b/src/config/config.rs @@ -162,15 +162,20 @@ static DEFAULT_CONFIG: LazyLock = LazyLock::new(|| KeyCheckerC // LazyLock for the test message body used in API key validation pub static TEST_MESSAGE_BODY: LazyLock = LazyLock::new(|| { serde_json::json!({ - "contents": [ + "contents": [ + { + "parts": [ { - "parts": [ - { - "text": "Hi" - } - ] + "text": "Hi" } - ] + ] + } + ], + "generationConfig": { + "thinkingConfig": { + "thinkingBudget": 0 + } + } }) });