delete_context
Remove a specific context permanently from the Convolut Context Bank using its unique identifier to manage storage and maintain organization.
Instructions
Delete a context permanently by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_id | Yes | The unique identifier of the context to delete |
Input Schema (JSON Schema)
{
"properties": {
"context_id": {
"description": "The unique identifier of the context to delete",
"format": "uuid",
"type": "string"
}
},
"required": [
"context_id"
],
"type": "object"
}