diff --git a/notebook/agentchat_stream.ipynb b/notebook/agentchat_stream.ipynb index e6fa6e4405c0..cfce4de54f9d 100644 --- a/notebook/agentchat_stream.ipynb +++ b/notebook/agentchat_stream.ipynb @@ -19,10 +19,10 @@ "source": [ "# Interactive LLM Agent Dealing with Data Stream\n", "\n", - "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.\n", + "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.\n", "Please find documentation about this feature [here](https://microsoft.github.io/autogen/docs/Use-Cases/agent_chat).\n", "\n", - "In this notebook, we demonstrate how to use customized agents to continuously acquires news from the web and ask for investment suggestions.\n", + "In this notebook, we demonstrate how to use customized agents to continuously acquire news from the web and ask for investment suggestions.\n", "\n", "## Requirements\n", "\n", @@ -118,7 +118,7 @@ "]\n", "```\n", "\n", - "If you open this notebook in colab, you can upload your files by clicking the file icon on the left panel and then choose \"upload file\" icon.\n", + "If you open this notebook in colab, you can upload your files by clicking the file icon on the left panel and then choosing \"upload file\" icon.\n", "\n", "You can set the value of config_list in other ways you prefer, e.g., loading from a YAML file." ] @@ -130,7 +130,7 @@ "source": [ "## Example Task: Investment suggestion with realtime data\n", "\n", - "We consider a scenario where news data are streamed from a source, and we use an assistant agent to continually provide investment suggestions based on the data.\n", + "We consider a scenario where news data are streamed from a source, and we use an assistant agent to provide investment suggestions based on the data continually.\n", "\n", "First, we use the following code to simulate the data stream process." ]