|
1 | 1 | {
|
2 | 2 | "publisher": "OpenVINO",
|
3 | 3 | "name": "openvino-code-completion",
|
4 |
| - "version": "0.1.0", |
| 4 | + "version": "0.1.1", |
5 | 5 | "displayName": "OpenVINO Code Completion",
|
6 | 6 | "description": "VSCode extension for AI code completion with OpenVINO",
|
7 | 7 | "icon": "media/logo.png",
|
|
57 | 57 | "vsce:publish": "vsce publish",
|
58 | 58 | "ovsx:publish": "ovsx publish",
|
59 | 59 | "clear-out": "rimraf ./out"
|
60 |
| - |
61 | 60 | },
|
62 | 61 | "devDependencies": {
|
63 | 62 | "@types/glob": "8.1.0",
|
|
84 | 83 | "terser-webpack-plugin": "5.3.9",
|
85 | 84 | "ts-loader": "9.4.4",
|
86 | 85 | "typescript": "5.1.6",
|
87 |
| - "webpack": "5.88.2", |
| 86 | + "webpack": "^5.94.0", |
88 | 87 | "webpack-bundle-analyzer": "4.9.0",
|
89 | 88 | "webpack-cli": "5.1.4"
|
90 | 89 | },
|
|
205 | 204 | "order": 1,
|
206 | 205 | "type": "string",
|
207 | 206 | "default": "CPU",
|
208 |
| - "enum":[ |
| 207 | + "enum": [ |
209 | 208 | "CPU",
|
210 | 209 | "GPU",
|
211 | 210 | "NPU"
|
|
247 | 246 | "order": 4,
|
248 | 247 | "type": "boolean",
|
249 | 248 | "default": "false",
|
250 |
| - "description": |
251 |
| - "When checked, text before (above) and after (below) the cursor will be used for completion generation. When unckecked, only text before (above) the cursor will be used." |
| 249 | + "description": "When checked, text before (above) and after (below) the cursor will be used for completion generation. When unckecked, only text before (above) the cursor will be used." |
252 | 250 | },
|
253 | 251 | "openvinoCode.startToken": {
|
254 | 252 | "order": 7,
|
255 | 253 | "type": "string",
|
256 | 254 | "default": "< |fim_begin| >",
|
257 |
| - "description": |
258 |
| - "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
| 255 | + "description": "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
259 | 256 | },
|
260 | 257 | "openvinoCode.middleToken": {
|
261 | 258 | "order": 8,
|
262 | 259 | "type": "string",
|
263 | 260 | "default": "<|fim▁hole|>",
|
264 |
| - "description": |
265 |
| - "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
| 261 | + "description": "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
266 | 262 | },
|
267 | 263 | "openvinoCode.endToken": {
|
268 | 264 | "order": 9,
|
269 | 265 | "type": "string",
|
270 | 266 | "default": "<|fim▁end|>",
|
271 |
| - "description": |
272 |
| - "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
| 267 | + "description": "String that is sent to server is in format: `{startToken}{text above cursor}{middleToken}{text below cursor if fillInTheMiddleMode=true}{endToken}`. Leave `startToken`, `middleToken`, or `endToken` empty if there is no special token for those placements." |
273 | 268 | },
|
274 | 269 | "openvinoCode.stopToken": {
|
275 | 270 | "order": 10,
|
|
0 commit comments