quackstack 1.0.28 → 1.0.29

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.
@@ -93,6 +93,7 @@ export class AIClient {
93
93
  provider: "anthropic",
94
94
  name: "Anthropic",
95
95
  models: [
96
+ "claude-sonnet-4-6-20260218",
96
97
  "claude-opus-4.6",
97
98
  "claude-opus-4-5-20251124",
98
99
  "claude-opus-4-1-20250805",
@@ -103,7 +104,7 @@ export class AIClient {
103
104
  "claude-3-7-sonnet-20250219",
104
105
  "claude-3-5-haiku-20241022"
105
106
  ],
106
- defaultModel: "claude-opus-4.6"
107
+ defaultModel: "claude-sonnet-4-6-20260218"
107
108
  });
108
109
  }
109
110
  if (process.env.QUACKSTACK_GEMINI_KEY) {
@@ -172,7 +173,7 @@ export class AIClient {
172
173
  getDefaultModel(provider) {
173
174
  const defaults = {
174
175
  openai: "gpt-5.2",
175
- anthropic: "claude-sonnet-4-5-20250929",
176
+ anthropic: "claude-sonnet-4-6-20260218",
176
177
  gemini: "gemini-3-pro",
177
178
  deepseek: "deepseek-chat",
178
179
  mistral: "mistral-large-latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quackstack",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
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",