codeep 1.2.8 → 1.2.9

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.
@@ -49,6 +49,25 @@ export const PROVIDERS = {
49
49
  envKey: 'MINIMAX_API_KEY',
50
50
  subscribeUrl: 'https://platform.minimax.io/subscribe/coding-plan?code=2lWvoWUhrp&source=link',
51
51
  },
52
+ 'deepseek': {
53
+ name: 'DeepSeek',
54
+ description: 'DeepSeek AI models',
55
+ protocols: {
56
+ openai: {
57
+ baseUrl: 'https://api.deepseek.com',
58
+ authHeader: 'Bearer',
59
+ supportsNativeTools: true,
60
+ },
61
+ },
62
+ models: [
63
+ { id: 'deepseek-chat', name: 'DeepSeek V3', description: 'Latest general-purpose model' },
64
+ { id: 'deepseek-reasoner', name: 'DeepSeek R1', description: 'Reasoning model with chain-of-thought' },
65
+ ],
66
+ defaultModel: 'deepseek-chat',
67
+ defaultProtocol: 'openai',
68
+ envKey: 'DEEPSEEK_API_KEY',
69
+ subscribeUrl: 'https://platform.deepseek.com/sign_up',
70
+ },
52
71
  'anthropic': {
53
72
  name: 'Anthropic',
54
73
  description: 'Claude AI models',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
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",