vector_collection_management
Create, list, delete collections and add documents in a vector database to support RAG operations.
Instructions
Manage collection management operations.
Actions:
'create_collection': Creates a new collection or retrieves an existing one in the vector database.
'add_documents': Adds documents to an existing collection in the vector database.
'delete_collection': Deletes a collection from the vector database.
'list_collections': Lists all collections in the vector database.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform. Must be one of: 'create_collection', 'add_documents', 'delete_collection', 'list_collections' | |
| db_type | No | db type | |
| db_path | No | db path | |
| host | No | host | |
| port | No | port | |
| db_name | No | db name | |
| username | No | username | |
| password | No | password | |
| collection_name | No | collection name | |
| overwrite | No | overwrite | |
| document_directory | No | document directory | |
| document_paths | No | document paths | |
| document_contents | No | document contents | |
| confirm | No | confirm |
Output Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||