From 4fd7db2e5384d73472692dbc3e2239f0174f544e Mon Sep 17 00:00:00 2001 From: Parth Patel <64201651+parthbs@users.noreply.github.com> Date: Tue, 25 Mar 2025 19:16:18 +0000 Subject: [PATCH] #249: update QdrantVectorSearchTool README --- src/crewai_tools/tools/qdrant_vector_search_tool/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crewai_tools/tools/qdrant_vector_search_tool/README.md b/src/crewai_tools/tools/qdrant_vector_search_tool/README.md index 131dbca15..26ad9a15f 100644 --- a/src/crewai_tools/tools/qdrant_vector_search_tool/README.md +++ b/src/crewai_tools/tools/qdrant_vector_search_tool/README.md @@ -26,7 +26,7 @@ tool = QdrantVectorSearchTool( collection_name="example_collections", limit=3, qdrant_url="https://your-qdrant-cluster-url.com", - qdrant_api_key="your-qdrant-api-key", + qdrant_api_key="your-qdrant-api-key", # (optional) ) @@ -43,7 +43,7 @@ rag_agent = Agent( - `collection_name` : The name of the collection to search within. (Required) - `qdrant_url` : The URL of the Qdrant cluster. (Required) -- `qdrant_api_key` : The API key for the Qdrant cluster. (Required) +- `qdrant_api_key` : The API key for the Qdrant cluster. (Optional) - `limit` : The number of results to return. (Optional) - `vectorizer` : The vectorizer to use. (Optional)