From 76414c1cc028e28905df5a6b294560c72b1b4cce Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Wed, 17 Dec 2025 08:19:36 -0800 Subject: [PATCH] fix goldens --- .../resolved-aliases-retry.golden.json | 238 ++++++++++++++++++ 1 file changed, 238 insertions(+) create mode 100644 packages/core/src/services/test-data/resolved-aliases-retry.golden.json diff --git a/packages/core/src/services/test-data/resolved-aliases-retry.golden.json b/packages/core/src/services/test-data/resolved-aliases-retry.golden.json new file mode 100644 index 0000000000..3b38b909d8 --- /dev/null +++ b/packages/core/src/services/test-data/resolved-aliases-retry.golden.json @@ -0,0 +1,238 @@ +{ + "base": { + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "chat-base": { + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true + }, + "topK": 64 + } + }, + "chat-base-2.5": { + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingBudget": 8192 + }, + "topK": 64 + } + }, + "chat-base-3": { + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingLevel": "HIGH" + }, + "topK": 64 + } + }, + "gemini-3-pro-preview": { + "model": "gemini-3-pro-preview", + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingLevel": "HIGH" + }, + "topK": 64 + } + }, + "gemini-3-flash-preview": { + "model": "gemini-3-flash-preview", + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingLevel": "HIGH" + }, + "topK": 64 + } + }, + "gemini-2.5-pro": { + "model": "gemini-2.5-pro", + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingBudget": 8192 + }, + "topK": 64 + } + }, + "gemini-2.5-flash": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingBudget": 8192 + }, + "topK": 64 + } + }, + "gemini-2.5-flash-lite": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 1, + "topP": 0.95, + "thinkingConfig": { + "includeThoughts": true, + "thinkingBudget": 8192 + }, + "topK": 64 + } + }, + "gemini-2.5-flash-base": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "classifier": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "maxOutputTokens": 1024, + "thinkingConfig": { + "thinkingBudget": 512 + } + } + }, + "prompt-completion": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 0.3, + "topP": 1, + "maxOutputTokens": 16000, + "thinkingConfig": { + "thinkingBudget": 0 + } + } + }, + "edit-corrector": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "thinkingConfig": { + "thinkingBudget": 0 + } + } + }, + "summarizer-default": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "maxOutputTokens": 2000 + } + }, + "summarizer-shell": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "maxOutputTokens": 2000 + } + }, + "web-search": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "tools": [ + { + "googleSearch": {} + } + ] + } + }, + "web-fetch": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1, + "tools": [ + { + "urlContext": {} + } + ] + } + }, + "web-fetch-fallback": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "loop-detection": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "loop-detection-double-check": { + "model": "gemini-2.5-pro", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "llm-edit-fixer": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "next-speaker-checker": { + "model": "gemini-2.5-flash", + "generateContentConfig": { + "temperature": 0, + "topP": 1 + } + }, + "chat-compression-3-pro": { + "model": "gemini-3-pro-preview", + "generateContentConfig": {} + }, + "chat-compression-3-flash": { + "model": "gemini-3-flash-preview", + "generateContentConfig": {} + }, + "chat-compression-2.5-pro": { + "model": "gemini-2.5-pro", + "generateContentConfig": {} + }, + "chat-compression-2.5-flash": { + "model": "gemini-2.5-flash", + "generateContentConfig": {} + }, + "chat-compression-2.5-flash-lite": { + "model": "gemini-2.5-flash-lite", + "generateContentConfig": {} + }, + "chat-compression-default": { + "model": "gemini-2.5-pro", + "generateContentConfig": {} + } +}