likhonsheikh commited on
Commit
313ad68
·
verified ·
1 Parent(s): ab44170

Create tools.json

Browse files
Files changed (1) hide show
  1. tools.json +19 -0
tools.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0",
3
+ "tools": [
4
+ {
5
+ "name": "shell",
6
+ "description": "Run a POSIX shell command in the Ubuntu sandbox. Streams stdout/stderr.",
7
+ "args": {
8
+ "command": "string"
9
+ }
10
+ },
11
+ {
12
+ "name": "python",
13
+ "description": "Execute a short Python3 snippet. Streams stdout/stderr.",
14
+ "args": {
15
+ "code": "string"
16
+ }
17
+ }
18
+ ]
19
+ }