clear_data
Remove stored files, vector memory, or all data from the RAG system to free storage space or reset the knowledge base.
Instructions
Clear data from the RAG system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | Yes | Type of data to clear |
Input Schema (JSON Schema)
{
"properties": {
"type": {
"description": "Type of data to clear",
"enum": [
"files",
"memory",
"all"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}