Spaces:
Runtime error
Runtime error
Create tools.json
Browse files- 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 |
+
}
|