Skip to content

Commit

Permalink
Fix autogen examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Aug 27, 2024
1 parent ab7aca4 commit 266f384
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/examples/local_tools/autogen_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_termination_msg(content: dict) -> bool:

# Register the preferred Applications, with right executor.
composio_toolset.register_tools(
tools=[App.MATHEMATICAL], caller=chatbot, executor=user_proxy
apps=[App.MATHEMATICAL], caller=chatbot, executor=user_proxy
)

# Define task.
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/autogen/autogen_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main():

# Register the preferred Applications, with right executor.
composio_toolset.register_tools(
tools=[App.GITHUB], caller=chatbot, executor=user_proxy
apps=[App.GITHUB], caller=chatbot, executor=user_proxy
)

# Define task.
Expand Down

0 comments on commit 266f384

Please sign in to comment.