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.
@@ -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.3-codex"
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-deep-think",
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-3-pro"
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.2",
175
+ openai: "gpt-5.4-pro",
176
176
  anthropic: "claude-sonnet-4-6-20260218",
177
- gemini: "gemini-3-pro",
177
+ gemini: "gemini-2.5-pro",
178
178
  deepseek: "deepseek-chat",
179
179
  mistral: "mistral-large-latest",
180
180
  grok: "grok-4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quackstack",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "Your cracked unpaid intern for all things codebase related! AI-powered codebase search and Q&A.",
5
5
  "type": "module",
6
6
  "main": "dist/cli.cjs",