diff --git a/docs/docs/how_to/tools_human.ipynb b/docs/docs/how_to/tools_human.ipynb index c5bcbf3c01a..5e5312debde 100644 --- a/docs/docs/how_to/tools_human.ipynb +++ b/docs/docs/how_to/tools_human.ipynb @@ -129,13 +129,13 @@ "\n", "@tool\n", "def count_emails(last_n_days: int) -> int:\n", - " \"\"\"Multiply two integers together.\"\"\"\n", + " \"\"\"Dummy function to count number of e-mails. Returns 2 * last_n_days.\"\"\"\n", " return last_n_days * 2\n", "\n", "\n", "@tool\n", "def send_email(message: str, recipient: str) -> str:\n", - " \"Add two integers.\"\n", + " \"\"\"Dummy function for sending an e-mail.\"\"\"\n", " return f\"Successfully sent email to {recipient}.\"\n", "\n", "\n",