-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.52 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 3.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "btl-python-ai-coder",
"displayName": "BTL AI Coder (Python & C++)",
"description": "🤖 Personalized AI code completion for Python & C++ powered by Groq - GitHub Copilot alternative with user profiling",
"version": "1.3.1",
"publisher": "Sagito",
"author": {
"name": "Sagito",
"email": "sagito@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sagitoaz/BTL_Python.git"
},
"bugs": {
"url": "https://github.com/Sagitoaz/BTL_Python/issues"
},
"homepage": "https://github.com/Sagitoaz/BTL_Python#readme",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Machine Learning",
"Snippets",
"Other"
],
"keywords": [
"ai",
"code-completion",
"copilot",
"python",
"groq",
"llm",
"autocomplete",
"intellisense",
"personalized",
"code-assistant"
],
"engines": {
"vscode": "^1.104.0"
},
"main": "out/extension.js",
"activationEvents": [
"onLanguage:python",
"onLanguage:cpp",
"onLanguage:c",
"onStartupFinished"
],
"contributes": {
"configuration": {
"type": "object",
"title": "BTL AI Coder (Python & C++)",
"properties": {
"btl.serverUrl": {
"type": "string",
"default": "https://btl-python-r9kz.onrender.com",
"description": "Backend server URL (default: cloud server)"
},
"btl.apiKey": {
"type": "string",
"default": "5conmeo",
"description": "API key for authentication (change in production)"
},
"btl.enableStreaming": {
"type": "boolean",
"default": false,
"description": "Enable streaming completion (experimental)"
},
"btl.timeoutMs": {
"type": "number",
"default": 15000,
"minimum": 1000,
"maximum": 60000,
"description": "Request timeout in milliseconds"
},
"btl.enablePersonalization": {
"type": "boolean",
"default": true,
"description": "Enable personalized suggestions based on your coding style"
},
"btl.sendFeedback": {
"type": "boolean",
"default": true,
"description": "Send accept/reject feedback to improve suggestions"
},
"btl.debounceMs": {
"type": "number",
"default": 200,
"minimum": 0,
"maximum": 2000,
"description": "Delay in milliseconds before triggering completion (lower = faster suggestions)"
}
}
},
"commands": [
{
"command": "btl.inlineSuggest",
"title": "BTL: Trigger Inline Suggestion"
},
{
"command": "btl.testCompletion",
"title": "BTL: Test Completion"
},
{
"command": "btl.viewProfile",
"title": "BTL: View My Coding Profile"
},
{
"command": "btl.clearProfile",
"title": "BTL: Clear My Coding Profile"
}
]
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"vscode:prepublish": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^1.11.0"
},
"devDependencies": {
"@types/node": "^24.3.1",
"@types/vscode": "^1.104.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"typescript": "^5.9.3"
}
}