|
32 | 32 | "main": "./out/desktop/extension.js", |
33 | 33 | "browser": "./out/web/extension.js", |
34 | 34 | "contributes": { |
35 | | - "chatParticipants": [ |
36 | | - { |
37 | | - "id": "neuropilot.api", |
38 | | - "name": "neuroapi", |
39 | | - "fullName": "Neuro API (custom name selected)", |
40 | | - "description": "Chat with the connected server", |
41 | | - "when": "config.neuropilot.currentlyAsNeuroAPI != 'Neuro' && config.neuropilot.currentlyAsNeuroAPI != 'Evil'", |
42 | | - "isSticky": true, |
43 | | - "commands": [ |
44 | | - { |
45 | | - "name": "fix", |
46 | | - "description": "Ask the server to fix an error" |
47 | | - }, |
48 | | - { |
49 | | - "name": "explain", |
50 | | - "description": "Ask the server to explain something in your code" |
51 | | - } |
52 | | - ] |
53 | | - }, |
54 | | - { |
55 | | - "id": "neuropilot.neuro", |
56 | | - "name": "neuro", |
57 | | - "fullName": "Neuro-sama", |
58 | | - "description": "Chat with Neuro-sama", |
59 | | - "when": "config.neuropilot.currentlyAsNeuroAPI == 'Neuro'", |
60 | | - "isSticky": true, |
61 | | - "commands": [ |
62 | | - { |
63 | | - "name": "fix", |
64 | | - "description": "Ask Neuro to fix an error" |
65 | | - }, |
66 | | - { |
67 | | - "name": "explain", |
68 | | - "description": "Ask Neuro to explain something in your code" |
69 | | - } |
70 | | - ] |
71 | | - }, |
72 | | - { |
73 | | - "id": "neuropilot.evil", |
74 | | - "name": "evil", |
75 | | - "fullName": "Evil Neuro", |
76 | | - "description": "Chat with Evil Neuro", |
77 | | - "when": "config.neuropilot.currentlyAsNeuroAPI === 'Evil'", |
78 | | - "isSticky": true, |
79 | | - "commands": [ |
80 | | - { |
81 | | - "name": "fix", |
82 | | - "description": "Ask Evil to fix an error" |
83 | | - }, |
84 | | - { |
85 | | - "name": "explain", |
86 | | - "description": "Ask Evil to explain something in your code" |
87 | | - } |
88 | | - ] |
89 | | - } |
90 | | - ], |
91 | 35 | "commands": [ |
92 | 36 | { |
93 | 37 | "command": "neuropilot.reconnect", |
|
0 commit comments