sandbox_stop
Terminate and remove a running Node.js sandbox container to clean up resources after completing code execution tasks.
Instructions
Terminate and remove a running sandbox container. Should be called after finishing work in a sandbox initialized with sandbox_initialize.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"container_id": {
"type": "string"
}
},
"required": [
"container_id"
],
"type": "object"
}