From 58b8c52851e7c8f2f39f5ebc5f8a3642eeba6bbc Mon Sep 17 00:00:00 2001 From: Shruti Patel Date: Sat, 21 Oct 2023 19:56:01 -0400 Subject: [PATCH] Update agentchat_auto_feedback_from_code_execution.ipynb (#342) Co-authored-by: Chi Wang --- notebook/agentchat_auto_feedback_from_code_execution.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/agentchat_auto_feedback_from_code_execution.ipynb b/notebook/agentchat_auto_feedback_from_code_execution.ipynb index b26412f4f..564c7e2c8 100644 --- a/notebook/agentchat_auto_feedback_from_code_execution.ipynb +++ b/notebook/agentchat_auto_feedback_from_code_execution.ipynb @@ -362,7 +362,7 @@ "source": [ "The example above involves code execution. In AutoGen, code execution is triggered automatically by the `UserProxyAgent` when it detects an executable code block in a received message and no human user input is provided. This process occurs in a designated working directory, using a Docker container by default. Unless a specific directory is specified, AutoGen defaults to the `autogen/extensions` directory. Users have the option to specify a different working directory by setting the `work_dir` argument when constructing a new instance of the `UserProxyAgent`.\n", "\n", - "The whole chat is auto generated." + "The whole chat is auto-generated." ] }, { @@ -572,7 +572,7 @@ "* `generate_init_message`. We generate a modified initial message to send to the assistant agent, by adding the info that the execution will be performed in IPython.\n", "* `run_code`. We execute the code with the ipython instance.\n", "\n", - "With the new `IPythonUserProxyAgent`, we are able to run the code within the current notebook environment and display plot directly." + "With the new `IPythonUserProxyAgent`, we are able to run the code within the current notebook environment and display the plot directly." ] }, {