quackstack 1.0.29 → 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 +11 -11
- package/package.json +1 -1
package/dist/lib/ai-provider.js
CHANGED
|
@@ -71,6 +71,9 @@ export class AIClient {
|
|
|
71
71
|
provider: "openai",
|
|
72
72
|
name: "OpenAI",
|
|
73
73
|
models: [
|
|
74
|
+
"gpt-5.4-pro",
|
|
75
|
+
"gpt-5.4-thinking",
|
|
76
|
+
"gpt-5.4",
|
|
74
77
|
"gpt-5.3-codex",
|
|
75
78
|
"gpt-5.2",
|
|
76
79
|
"gpt-5.2-instant",
|
|
@@ -85,7 +88,7 @@ export class AIClient {
|
|
|
85
88
|
"gpt-4-turbo",
|
|
86
89
|
"gpt-3.5-turbo"
|
|
87
90
|
],
|
|
88
|
-
defaultModel: "gpt-5.
|
|
91
|
+
defaultModel: "gpt-5.4"
|
|
89
92
|
});
|
|
90
93
|
}
|
|
91
94
|
if (process.env.QUACKSTACK_ANTHROPIC_KEY) {
|
|
@@ -112,17 +115,14 @@ export class AIClient {
|
|
|
112
115
|
provider: "gemini",
|
|
113
116
|
name: "Gemini",
|
|
114
117
|
models: [
|
|
115
|
-
"gemini-3-pro",
|
|
116
|
-
"gemini-3-
|
|
118
|
+
"gemini-3.1-pro-preview",
|
|
119
|
+
"gemini-3-flash-preview",
|
|
120
|
+
"gemini-3.1-flash-lite-preview",
|
|
117
121
|
"gemini-2.5-pro",
|
|
118
122
|
"gemini-2.5-flash",
|
|
119
|
-
"gemini-2.5-flash-lite"
|
|
120
|
-
"gemini-2.0-flash-exp",
|
|
121
|
-
"gemini-1.5-pro",
|
|
122
|
-
"gemini-1.5-flash",
|
|
123
|
-
"gemini-1.5-flash-8b"
|
|
123
|
+
"gemini-2.5-flash-lite"
|
|
124
124
|
],
|
|
125
|
-
defaultModel: "gemini-
|
|
125
|
+
defaultModel: "gemini-2.5-pro"
|
|
126
126
|
});
|
|
127
127
|
}
|
|
128
128
|
if (process.env.QUACKSTACK_DEEPSEEK_KEY) {
|
|
@@ -172,9 +172,9 @@ export class AIClient {
|
|
|
172
172
|
}
|
|
173
173
|
getDefaultModel(provider) {
|
|
174
174
|
const defaults = {
|
|
175
|
-
openai: "gpt-5.
|
|
175
|
+
openai: "gpt-5.4-pro",
|
|
176
176
|
anthropic: "claude-sonnet-4-6-20260218",
|
|
177
|
-
gemini: "gemini-
|
|
177
|
+
gemini: "gemini-2.5-pro",
|
|
178
178
|
deepseek: "deepseek-chat",
|
|
179
179
|
mistral: "mistral-large-latest",
|
|
180
180
|
grok: "grok-4",
|