Skip to content

Fix typos in gpt-5_new_params_and_tools.ipynb #2029

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions examples/gpt-5/gpt-5_new_params_and_tools.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"source": [
"### 2.3 Using Verbosity for Coding Use Cases \n",
"\n",
"The verbosity parameter also influences the length and complexity of generated code, as well as the depth of accompanying explanations. Here's an example, wherein we use various verboisty levels for a task to generate a Python program that sorts an array of 1000000 random numbers. "
"The verbosity parameter also influences the length and complexity of generated code, as well as the depth of accompanying explanations. Here's an example, wherein we use various verbosity levels for a task to generate a Python program that sorts an array of 1000000 random numbers. "
]
},
{
Expand Down Expand Up @@ -503,7 +503,7 @@
"id": "fa48bbeb",
"metadata": {},
"source": [
"Medium verboisty, generated richer code with additioanl explanations. Let's do the same with high. "
"Medium verbosity, generated richer code with additional explanations. Let's do the same with high. "
]
},
{
Expand Down Expand Up @@ -898,7 +898,7 @@
"\n",
"\n",
"prompt = \"\"\"\n",
"Write code to sort the array of numbers in three languages: C++, Python and Java (10 times each)using code_exec functions.\n",
"Write code to sort the array of numbers in three languages: C++, Python and Java (10 times each) using code_exec functions.\n",
"\n",
"ALWAYS CALL THESE THREE FUNCTIONS EXACTLY ONCE: code_exec_python, code_exec_cpp and code_exec_java tools to sort the array in each language. Stop once you've called these three functions in each language once.\n",
"\n",
Expand Down