-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ace-codex",
"displayName": "ACE-Codex",
"description": "Free GitHub Copilot alternative using local Ollama models. 100% private, no API key needed.",
"version": "0.1.0",
"publisher": "teeeteee23",
"engines": { "vscode": "^1.80.0" },
"categories": ["Machine Learning", "Programming Languages", "Other"],
"keywords": ["copilot", "ollama", "ai", "code completion", "local llm", "privacy"],
"icon": "assets/icon.png",
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ace-codex.selectModel",
"title": "ACE-Codex: Select Model"
},
{
"command": "ace-codex.indexWorkspace",
"title": "ACE-Codex: Index Workspace (RAG)"
},
{
"command": "ace-codex.voiceInput",
"title": "ACE-Codex: Voice Input"
}
],
"configuration": {
"title": "ACE-Codex",
"properties": {
"ace-codex.model": {
"type": "string",
"default": "codellama",
"description": "Ollama model to use for completions"
},
"ace-codex.ollamaUrl": {
"type": "string",
"default": "http://localhost:11434",
"description": "Ollama server URL"
},
"ace-codex.ragEnabled": {
"type": "boolean",
"default": true,
"description": "Enable RAG context from your codebase"
},
"ace-codex.voiceEnabled": {
"type": "boolean",
"default": true,
"description": "Enable Whisper voice input"
},
"ace-codex.maxTokens": {
"type": "number",
"default": 150,
"description": "Maximum tokens per completion"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^18.0.0",
"typescript": "^5.0.0"
}
}