File size: 1,125 Bytes
f87a697
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "slm-code-interpreter-vscode",
  "displayName": "SLM Code Interpreter Integration",
  "description": "Local CPU-optimized Python code interpreter agent integration for VS Code editor selection executions.",
  "version": "0.1.0",
  "publisher": "slm-agents",
  "engines": {
    "vscode": "^1.60.0"
  },
  "categories": [
    "Machine Learning",
    "Programming Languages",
    "Other"
  ],
  "activationEvents": [
    "onCommand:slm-code-interpreter.executeSelection",
    "onCommand:slm-code-interpreter.executeInstruction"
  ],
  "main": "./extension.js",
  "contributes": {
    "commands": [
      {
        "command": "slm-code-interpreter.executeSelection",
        "title": "SLM Code Interpreter: Execute Selected Prompt / Code"
      },
      {
        "command": "slm-code-interpreter.executeInstruction",
        "title": "SLM Code Interpreter: Ask Agent to Write & Run..."
      }
    ],
    "menus": {
      "editor/context": [
        {
          "command": "slm-code-interpreter.executeSelection",
          "group": "navigation",
          "when": "editorHasSelection"
        }
      ]
    }
  }
}