From c5d57070fbc600cc40eeba2bcc8d7822d32d049a Mon Sep 17 00:00:00 2001 From: Yx Jiang <2237303+yxjiang@users.noreply.github.com> Date: Fri, 5 Apr 2024 22:16:29 -0700 Subject: [PATCH] Change to default --- polymind/core_tools/retrieve_tool.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/polymind/core_tools/retrieve_tool.py b/polymind/core_tools/retrieve_tool.py index c5b6e1d..b6a30a5 100644 --- a/polymind/core_tools/retrieve_tool.py +++ b/polymind/core_tools/retrieve_tool.py @@ -15,7 +15,7 @@ class RetrieveTool(BaseTool, ABC): """The base class for the retrieval tools.""" descriptions: List[str] = Field( - defaults=[ + default=[ "The tool to retrieve the information based on the embedding of the query.", "The retrieval tool.", "The tool to search for information based on the embedding of the query.", @@ -121,7 +121,7 @@ class IndexTool(BaseTool, ABC): """The base class for the tool to index any content.""" descriptions: List[str] = Field( - defaults=[ + default=[ "The tool to index the content into the vector database.", "The data indexing tool.", "The tool to store information into the vector database.", diff --git a/pyproject.toml b/pyproject.toml index 47c9b7e..7a9cae0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polymind" -version = "0.0.38" # Update this version before publishing to PyPI +version = "0.0.39" # Update this version before publishing to PyPI description = "PolyMind is a customizable collaborative multi-agent framework for collective intelligence and distributed problem solving." authors = ["TechTao"] license = "MIT License"