quackstack 1.0.29 → 1.0.30
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 +5 -2
- 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) {
|
|
@@ -172,7 +175,7 @@ export class AIClient {
|
|
|
172
175
|
}
|
|
173
176
|
getDefaultModel(provider) {
|
|
174
177
|
const defaults = {
|
|
175
|
-
openai: "gpt-5.
|
|
178
|
+
openai: "gpt-5.4-pro",
|
|
176
179
|
anthropic: "claude-sonnet-4-6-20260218",
|
|
177
180
|
gemini: "gemini-3-pro",
|
|
178
181
|
deepseek: "deepseek-chat",
|