Skip to content

Commit

Permalink
Merge pull request #67 from small-thinking/fix-retriever-3
Browse files Browse the repository at this point in the history
Change to default
  • Loading branch information
yxjiang authored Apr 6, 2024
2 parents 62a76d2 + c5d5707 commit 074741a
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 074741a

Please sign in to comment.