Fix grammar in agentchat_stream.ipynb (#357)

Co-authored-by: Chi Wang <wang.chi@microsoft.com>
This commit is contained in:
Shruti Patel 2023-10-22 00:49:49 -04:00 committed by GitHub
parent 1c7fbe5acf
commit 4c8d4b0b53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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."
]