quackstack 1.0.30 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/ai-provider.js +6 -9
- package/package.json +1 -1
package/dist/lib/ai-provider.js
CHANGED
|
@@ -115,17 +115,14 @@ export class AIClient {
|
|
|
115
115
|
provider: "gemini",
|
|
116
116
|
name: "Gemini",
|
|
117
117
|
models: [
|
|
118
|
-
"gemini-3-pro",
|
|
119
|
-
"gemini-3-
|
|
118
|
+
"gemini-3.1-pro-preview",
|
|
119
|
+
"gemini-3-flash-preview",
|
|
120
|
+
"gemini-3.1-flash-lite-preview",
|
|
120
121
|
"gemini-2.5-pro",
|
|
121
122
|
"gemini-2.5-flash",
|
|
122
|
-
"gemini-2.5-flash-lite"
|
|
123
|
-
"gemini-2.0-flash-exp",
|
|
124
|
-
"gemini-1.5-pro",
|
|
125
|
-
"gemini-1.5-flash",
|
|
126
|
-
"gemini-1.5-flash-8b"
|
|
123
|
+
"gemini-2.5-flash-lite"
|
|
127
124
|
],
|
|
128
|
-
defaultModel: "gemini-
|
|
125
|
+
defaultModel: "gemini-2.5-pro"
|
|
129
126
|
});
|
|
130
127
|
}
|
|
131
128
|
if (process.env.QUACKSTACK_DEEPSEEK_KEY) {
|
|
@@ -177,7 +174,7 @@ export class AIClient {
|
|
|
177
174
|
const defaults = {
|
|
178
175
|
openai: "gpt-5.4-pro",
|
|
179
176
|
anthropic: "claude-sonnet-4-6-20260218",
|
|
180
|
-
gemini: "gemini-
|
|
177
|
+
gemini: "gemini-2.5-pro",
|
|
181
178
|
deepseek: "deepseek-chat",
|
|
182
179
|
mistral: "mistral-large-latest",
|
|
183
180
|
grok: "grok-4",
|