codeep 1.2.8 → 1.2.10
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/config/providers.js +20 -0
- package/dist/renderer/App.js +1 -1
- package/package.json +1 -1
package/dist/config/providers.js
CHANGED
|
@@ -18,6 +18,7 @@ export const PROVIDERS = {
|
|
|
18
18
|
},
|
|
19
19
|
},
|
|
20
20
|
models: [
|
|
21
|
+
{ id: 'glm-5', name: 'GLM-5', description: 'Most capable GLM model (Pro/Max subscription)' },
|
|
21
22
|
{ id: 'glm-4.7', name: 'GLM-4.7', description: 'Latest GLM model' },
|
|
22
23
|
{ id: 'glm-4.7-flash', name: 'GLM-4.7 Flash', description: 'Faster, lighter version' },
|
|
23
24
|
],
|
|
@@ -49,6 +50,25 @@ export const PROVIDERS = {
|
|
|
49
50
|
envKey: 'MINIMAX_API_KEY',
|
|
50
51
|
subscribeUrl: 'https://platform.minimax.io/subscribe/coding-plan?code=2lWvoWUhrp&source=link',
|
|
51
52
|
},
|
|
53
|
+
'deepseek': {
|
|
54
|
+
name: 'DeepSeek',
|
|
55
|
+
description: 'DeepSeek AI models',
|
|
56
|
+
protocols: {
|
|
57
|
+
openai: {
|
|
58
|
+
baseUrl: 'https://api.deepseek.com',
|
|
59
|
+
authHeader: 'Bearer',
|
|
60
|
+
supportsNativeTools: true,
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
models: [
|
|
64
|
+
{ id: 'deepseek-chat', name: 'DeepSeek V3', description: 'Latest general-purpose model' },
|
|
65
|
+
{ id: 'deepseek-reasoner', name: 'DeepSeek R1', description: 'Reasoning model with chain-of-thought' },
|
|
66
|
+
],
|
|
67
|
+
defaultModel: 'deepseek-chat',
|
|
68
|
+
defaultProtocol: 'openai',
|
|
69
|
+
envKey: 'DEEPSEEK_API_KEY',
|
|
70
|
+
subscribeUrl: 'https://platform.deepseek.com/sign_up',
|
|
71
|
+
},
|
|
52
72
|
'anthropic': {
|
|
53
73
|
name: 'Anthropic',
|
|
54
74
|
description: 'Claude AI models',
|
package/dist/renderer/App.js
CHANGED
|
@@ -334,7 +334,7 @@ export class App {
|
|
|
334
334
|
'test', 'docs', 'refactor', 'fix', 'explain', 'optimize', 'debug', 'skills',
|
|
335
335
|
'amend', 'pr', 'changelog', 'branch', 'stash', 'unstash',
|
|
336
336
|
'build', 'deploy', 'release', 'publish',
|
|
337
|
-
'component', 'api', '
|
|
337
|
+
'component', 'api', 'hook', 'service', 'page', 'form', 'crud',
|
|
338
338
|
'security', 'profile', 'log', 'types', 'cleanup', 'modernize', 'migrate',
|
|
339
339
|
'split', 'rename', 'coverage', 'e2e', 'mock', 'readme', 'translate',
|
|
340
340
|
'docker', 'ci', 'env', 'k8s', 'terraform', 'nginx', 'monitor',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
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",
|