codeep 1.3.41 → 1.3.42

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.
@@ -141,7 +141,7 @@ function createConfig() {
141
141
  const defaults = {
142
142
  apiKey: '',
143
143
  provider: 'z.ai',
144
- model: 'glm-4.7',
144
+ model: 'glm-5.1',
145
145
  agentMode: 'on',
146
146
  ollamaUrl: 'http://localhost:11434',
147
147
  agentConfirmation: 'dangerous',
@@ -7,8 +7,6 @@ const MODEL_CONTEXT_WINDOWS = {
7
7
  'glm-5.1': 131_072,
8
8
  'glm-5': 80_000,
9
9
  'glm-5-turbo': 202_752,
10
- 'glm-4.5-air': 131_072,
11
- 'glm-4.7-flash': 202_752,
12
10
  // OpenAI
13
11
  'gpt-5.5': 1_200_000,
14
12
  'gpt-5.4': 1_050_000,
@@ -58,8 +56,6 @@ const MODEL_PRICING = {
58
56
  'glm-5.1': { inputPer1M: 1.00, outputPer1M: 3.20 },
59
57
  'glm-5': { inputPer1M: 0.72, outputPer1M: 2.30 },
60
58
  'glm-5-turbo': { inputPer1M: 1.20, outputPer1M: 4.00 },
61
- 'glm-4.5-air': { inputPer1M: 0.20, outputPer1M: 1.10 },
62
- 'glm-4.7-flash': { inputPer1M: 0.06, outputPer1M: 0.40 },
63
59
  // OpenAI
64
60
  'gpt-5.5': { inputPer1M: 5.00, outputPer1M: 30.00 },
65
61
  'gpt-5.4': { inputPer1M: 2.50, outputPer1M: 15.00 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.3.41",
3
+ "version": "1.3.42",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",