From c31a8d6ee2e5207ef88b4ef4e6c5dba5ebbca7d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Fri, 3 Jan 2025 09:58:58 -0300 Subject: [PATCH] fix --- src/crewai_tools/tools/weaviate_tool/vector_search.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crewai_tools/tools/weaviate_tool/vector_search.py b/src/crewai_tools/tools/weaviate_tool/vector_search.py index fc5641009..bfe80f966 100644 --- a/src/crewai_tools/tools/weaviate_tool/vector_search.py +++ b/src/crewai_tools/tools/weaviate_tool/vector_search.py @@ -36,7 +36,6 @@ class WeaviateVectorSearchTool(BaseTool): description: str = "A tool to search the Weaviate database for relevant information on internal documents." args_schema: Type[BaseModel] = WeaviateToolSchema query: Optional[str] = None - vectorizer: Optional[Vectorizers] = None generative_model: Optional[str] = None collection_name: Optional[str] = None