Skip to content

Commit ca2e0b8

Browse files
Update agentchat_MathChat.ipynb (#341)
1 parent 58b8c52 commit ca2e0b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

notebook/agentchat_MathChat.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"\n",
1818
"AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://microsoft.github.io/autogen/docs/Use-Cases/agent_chat).\n",
1919
"\n",
20-
"MathChat is an experimental convesational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://microsoft.github.io/autogen/blog/2023/06/28/MathChat).\n",
20+
"MathChat is an experimental conversational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://microsoft.github.io/autogen/blog/2023/06/28/MathChat).\n",
2121
"\n",
2222
"## Requirements\n",
2323
"\n",
@@ -235,7 +235,7 @@
235235
"------------------------------------\n",
236236
"### Using other prompts\n",
237237
"\n",
238-
"MathChat allows different prompts that instruct assistant to solve the problem.\n",
238+
"MathChat allows different prompts that instruct the assistant to solve the problem.\n",
239239
"\n",
240240
"Check out `MathUserProxyAgent.generate_init_message(problem, prompt_type='default', customized_prompt=None)`:\n",
241241
"- You may choose from `['default', 'python', 'two_tools']` for parameter `prompt_type`. We include two more prompts in the paper: \n",
@@ -292,7 +292,7 @@
292292
"metadata": {},
293293
"outputs": [],
294294
"source": [
295-
"# The wolfram alpha appid is required for this example (the assistant may choose to query Wolfram Alpha).\n",
295+
"# The wolfram alpha app id is required for this example (the assistant may choose to query Wolfram Alpha).\n",
296296
"import os\n",
297297
"if \"WOLFRAM_ALPHA_APPID\" not in os.environ:\n",
298298
" os.environ[\"WOLFRAM_ALPHA_APPID\"] = open(\"wolfram.txt\").read().strip()\n",

0 commit comments

Comments
 (0)