delete_collection
Remove a specific collection from the Qdrant vector database to manage storage and optimize semantic search operations effectively.
Instructions
Delete a Qdrant collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Name of the collection to delete |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Name of the collection to delete",
"type": "string"
}
},
"required": [
"collection"
],
"type": "object"
}