open_collection
Open a saved vector collection from disk for read-write or read-only use, enabling vector search and document retrieval.
Instructions
Open an existing Zvec collection from disk.
This tool opens a previously created collection and caches it for subsequent operations. The collection must have been created with zvec_create_and_open_collection.
Args: params (OpenCollectionInput): Validated input parameters containing: - path (str): Filesystem path of the existing collection - collection_name (str): Unique session identifier for caching - read_only (bool): Open in read-only mode (default: False)
Returns: str: Success message with collection details or error message
Examples: - Use when: "Open the collection at ./my_vectors" - Use when: "Load existing vector database from ./embeddings" - Don't use when: Collection doesn't exist (use create_and_open_collection)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |