Skip to content

Commit

Permalink
🚢 v0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cobycloud committed Jul 8, 2024
1 parent 4b670a9 commit 794bac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion swarmauri/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.8.dev116"
__version__ = "0.3.9"
__long_desc__ = """
# swarmaURI sdk
Expand Down
3 changes: 1 addition & 2 deletions swarmauri/standard/llms/concrete/CohereToolModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ def predict(self,
tools=self._schema_convert_tools(toolkit.tools)
)


logging.info(f"tool_response: {tool_response}")
logging.info(tool_response.text)
tool_results = []
Expand All @@ -64,7 +63,7 @@ def predict(self,
logging.info(f"tool_results: {tool_results}")
agent_response = client.chat(
model=self.name,
message="",
message=formatted_messages[-1]['content'],
chat_history=formatted_messages[:-1],
tools=self._schema_convert_tools(toolkit.tools),
force_single_step=True,
Expand Down

0 comments on commit 794bac7

Please sign in to comment.