remove_file
Delete files from the RAG system to manage storage and maintain relevant content for retrieval-augmented generation tasks.
Instructions
Remove a file from the RAG system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file to remove from the RAG system |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file to remove from the RAG system",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}