Skip to content

Commit

Permalink
fix to_crewai_tool method
Browse files Browse the repository at this point in the history
  • Loading branch information
User committed Jul 11, 2024
1 parent e1ff6fd commit dcece65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion motleycrew/tools/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def to_crewai_tool(self) -> Crewai__BaseTool:
ensure_module_is_installed("crewai_tools")
crewai_tool = Crewai__Tool(
name=self.tool.name,
description=self.tooldescription,
description=self.tool.description,
func=self.tool._run,
args_schema=self.tool.args_schema,
)
Expand Down

0 comments on commit dcece65

Please sign in to comment.