Skip to content

Commit

Permalink
fix bug (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
TengHu authored Dec 31, 2023
1 parent 07290db commit b71f93a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actionweaver/llms/openai/tools/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _invoke_tool(
Tools.from_expr(
expr,
),
(stop, *called_tools[name]),
(stop, called_tools[name]),
)
else:
# if multiple type of functions are invoked, use the same set of tools next api call
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 = "actionweaver"
version = "0.0.20"
version = "0.0.21"
description = "An Application Framework for Building LLM Agents"
authors = ['Teng "Niel" Hu <[email protected]>']
readme = "README.md"
Expand Down

0 comments on commit b71f93a

Please sign in to comment.