Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small corrections on intro notebook #63

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions intro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"\n",
"**TapeAgents** is a framework that leverages a structured, replayable log (**Tape**) of the agent session to facilitate all stages of the LLM Agent development lifecycle. In TapeAgents, the agent reasons by processing the tape and the LLM output to produce new thoughts, actions, control flow steps and append them to the tape. The environment then reacts to the agent’s actions by likewise appending observation steps to the tape.\n",
"\n",
"In this tutorial you will learn:\n",
"In this tutorial, you will learn:\n",
"- how to create TapeAgents using the low-level API\n",
"- run and resume TapeAgents\n",
"- have one TapeAgent reuse another TapeAgent's tape as training data\n",
"\n",
"In upcoming versions of this tutorial you will also learn: \n",
"In upcoming versions of this tutorial, you will also learn: \n",
"- how to make a team TapeAgent with subagents\n",
"- how to build TapeAgents using available high-level APIs\n",
"- how to build a TapeAgent that streams partial steps\n",
Expand All @@ -35,7 +35,7 @@
"metadata": {},
"source": [
"# Setup\n",
"We're assuming that you already installed project through the `make setup` or and jupyter notebook is running in the context of the project. If not, please refer to the [README](README.md) for more detailed instructions."
"We're assuming that you already installed project through the `make setup` or the jupyter notebook is running in the context of the project. If not, please refer to the [README](README.md) for more detailed instructions."
]
},
{
Expand Down Expand Up @@ -72,7 +72,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"In this section we will build the simplest possible \"hello world\" agent. We will then go through all the new concepts that you need to know to understand the code. This section is quite long, but with the solid foundation you acquire here other TapeAgent tutorials will be easy to process.\n",
"In this section, we will build the simplest possible \"hello world\" agent. We will then go through all the new concepts that you need to know to understand the code. This section is quite long, but with the solid foundation you acquire here other TapeAgent tutorials will be easy to process.\n",
"\n",
"Without further ado, here's the code!"
]
Expand Down