codeep 1.2.32 → 1.2.34
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/README.md +5 -7
- package/dist/config/providers.js +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -780,13 +780,11 @@ npm install -g codeep
|
|
|
780
780
|
2. Add to your Zed `settings.json`:
|
|
781
781
|
|
|
782
782
|
```json
|
|
783
|
-
{
|
|
784
|
-
"
|
|
785
|
-
"
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
"args": ["acp"]
|
|
789
|
-
}
|
|
783
|
+
"agent_servers": {
|
|
784
|
+
"Codeep": {
|
|
785
|
+
"type": "custom",
|
|
786
|
+
"command": "codeep",
|
|
787
|
+
"args": ["acp"]
|
|
790
788
|
}
|
|
791
789
|
}
|
|
792
790
|
```
|
package/dist/config/providers.js
CHANGED
|
@@ -148,6 +148,29 @@ export const PROVIDERS = {
|
|
|
148
148
|
defaultProtocol: 'anthropic',
|
|
149
149
|
envKey: 'ANTHROPIC_API_KEY',
|
|
150
150
|
},
|
|
151
|
+
'google': {
|
|
152
|
+
name: 'Google AI',
|
|
153
|
+
description: 'Gemini models',
|
|
154
|
+
protocols: {
|
|
155
|
+
openai: {
|
|
156
|
+
baseUrl: 'https://generativelanguage.googleapis.com/v1beta/openai',
|
|
157
|
+
authHeader: 'Bearer',
|
|
158
|
+
supportsNativeTools: true,
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
models: [
|
|
162
|
+
{ id: 'gemini-3.1-pro-preview', name: 'Gemini 3.1 Pro Preview', description: 'Most capable Gemini model' },
|
|
163
|
+
{ id: 'gemini-3-pro-preview', name: 'Gemini 3 Pro Preview', description: 'Highly capable, complex tasks' },
|
|
164
|
+
{ id: 'gemini-3-flash-preview', name: 'Gemini 3 Flash Preview', description: 'Fast and capable, general use' },
|
|
165
|
+
{ id: 'gemini-2.5-pro', name: 'Gemini 2.5 Pro', description: 'Strong reasoning and coding' },
|
|
166
|
+
{ id: 'gemini-2.5-flash', name: 'Gemini 2.5 Flash', description: 'Balanced speed and quality' },
|
|
167
|
+
{ id: 'gemini-2.5-flash-lite', name: 'Gemini 2.5 Flash Lite', description: 'Fastest, lowest cost' },
|
|
168
|
+
],
|
|
169
|
+
defaultModel: 'gemini-2.5-flash',
|
|
170
|
+
defaultProtocol: 'openai',
|
|
171
|
+
envKey: 'GOOGLE_API_KEY',
|
|
172
|
+
subscribeUrl: 'https://aistudio.google.com/apikey',
|
|
173
|
+
},
|
|
151
174
|
};
|
|
152
175
|
export function getProvider(id) {
|
|
153
176
|
return PROVIDERS[id] || null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.34",
|
|
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",
|