Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions notebook/agentchat_function_call_with_composio.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
"source": [
"## Initialize Composio's Toolset\n",
"\n",
"Now, we initialize Composio's toolset and get the tools and actions we need for the agent. Then, we register the tools with the `UserProxyAgent`.\n",
"Now, we initialize Composio's toolset and get the tools and actions we need for the agent. Then, we register the tools so the assistant can call them and the `UserProxyAgent` can execute them.\n",
"\n",
"The agent can then call the tools using function calling."
]
Expand All @@ -205,8 +205,8 @@
"\n",
"# Get the required tools and register them with the agents\n",
"email_tools = composio_toolset.register_tools(\n",
" caller=user_proxy,\n",
" executor=chatbot,\n",
" caller=chatbot,\n",
" executor=user_proxy,\n",
" actions=[\n",
" Action.GMAIL_REPLY_TO_THREAD,\n",
" ],\n",
Expand Down