Skip to content

Fix typos #1872

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
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"\n",
"We're looking at a classification problem where we'd like to guess the grape variety based on all other criterias available, including description, subregion and province that we'll include in the prompt. It gives a lot of information to the model, you're free to also remove some information that can help significantly the model such as the region in which it was produced to see if it does a good job at finding the grape.\n",
"\n",
"Let's filter the grape varieties that have less than 5 occurences in reviews.\n",
"Let's filter the grape varieties that have less than 5 occurrences in reviews.\n",
"\n",
"Let's proceed with a subset of 500 random rows from this dataset."
]
Expand Down
2 changes: 1 addition & 1 deletion examples/Question_answering_using_embeddings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
"id": "1af18d66-d47a-496d-ae5f-4c5d53caa434",
"metadata": {},
"source": [
"In this case, the model has no knowledge of 2024 and is unable to answer the question. In a similar way, if you ask a question pertaining to a recent political event (that occured in Nov 2024 for example), GPT-4o-mini models will not be able to answer due to its knowledge cut-off date of Oct 2023. "
"In this case, the model has no knowledge of 2024 and is unable to answer the question. In a similar way, if you ask a question pertaining to a recent political event (that occurred in Nov 2024 for example), GPT-4o-mini models will not be able to answer due to its knowledge cut-off date of Oct 2023. "
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"![GPT Search Term Analysis Part 1](../../../images/gptactions_googleads_search_term_analysis_1.png)",
"![GPT Search Term Analysis Part 1](../../../images/gptactions_googleads_search_term_analysis_1.png)\n",
"![GPT Search Term Analysis Part 2](../../../images/gptactions_googleads_search_term_analysis_2.png)"
]
},
Expand Down Expand Up @@ -549,7 +549,7 @@
" },\n",
" \"date_ranges\": {\n",
" \"type\": \"array\",\n",
" \"description\": \"A list of date ranges requested from the user. They needs to be calculated seperately with Code Interpreter and Python every single time for accuracy. For example, if the user requests \\\"Google Ads search impression share in May and August\\\", then this array should be [[\\\"2024-05-01\\\", \\\"2024-05-31\\\"], [\\\"2024-08-01\\\", \\\"2024-08-31\\\"]].\",\n",
" \"description\": \"A list of date ranges requested from the user. They needs to be calculated separately with Code Interpreter and Python every single time for accuracy. For example, if the user requests \\\"Google Ads search impression share in May and August\\\", then this array should be [[\\\"2024-05-01\\\", \\\"2024-05-31\\\"], [\\\"2024-08-01\\\", \\\"2024-08-31\\\"]].\",\n",
" \"items\": {\n",
" \"type\": \"array\",\n",
" \"items\": {\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@
"source": [
"We will use `gpt-3.5-turbo` for generating response for a given query and `gpt-4` for evaluation.\n",
"\n",
"Let's create service_context seperately for `gpt-3.5-turbo` and `gpt-4`."
"Let's create service_context separately for `gpt-3.5-turbo` and `gpt-4`."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
"- Uses gpt-4o model.\n",
"\n",
"2.\t**Agent 2: Python Code Generator and Executor (with Dynamically Generated Tool Calling and Code Execution)**\n",
"- Recieve the file content's context from Agent 1.\n",
"- Receive the file content's context from Agent 1.\n",
"- Instructions to generate a Python script to answer the user's question.\n",
"- Has access to the code interpreter within the Docker container, which is used to execute Python code.\n",
"- Has access only to the file system inside the Docker container (not the host).\n",
Expand Down