Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Fix method call in chat.py and bump version to 0.1.2
Browse files Browse the repository at this point in the history
- Corrected the instantiation of `tilores_tools.search_tool` by changing it to a method call in `examples/chat/chat.py`.
- Updated the version in `pyproject.toml` from 0.1.1 to 0.1.2.
  • Loading branch information
Overbryd committed Sep 11, 2024
1 parent 46ce13d commit b17ff97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/chat/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def start():
tilores_tools = TiloresTools(tilores)
tools = [
HumanInputChainlit(),
tilores_tools.search_tool,
tilores_tools.search_tool(),
]
# Use MemorySaver to use the full conversation
memory = MemorySaver()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "langchain-tilores"
version = "0.1.1"
version = "0.1.2"
authors = [
{ name="Lukas Rieder", email="[email protected]" },
]
Expand Down

0 comments on commit b17ff97

Please sign in to comment.