Skip to content

Commit

Permalink
Change to default
Browse files Browse the repository at this point in the history
  • Loading branch information
yxjiang committed Apr 6, 2024
1 parent 62a76d2 commit c5d5707
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions polymind/core_tools/retrieve_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit c5d5707

Please sign in to comment.