diff --git a/examples/Leveraging_model_distillation_to_fine-tune_a_model.ipynb b/examples/Leveraging_model_distillation_to_fine-tune_a_model.ipynb index e64fba5c3d..6b8dc4b4f9 100644 --- a/examples/Leveraging_model_distillation_to_fine-tune_a_model.ipynb +++ b/examples/Leveraging_model_distillation_to_fine-tune_a_model.ipynb @@ -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." ] diff --git a/examples/Question_answering_using_embeddings.ipynb b/examples/Question_answering_using_embeddings.ipynb index c7cf8a68c9..56703366fe 100644 --- a/examples/Question_answering_using_embeddings.ipynb +++ b/examples/Question_answering_using_embeddings.ipynb @@ -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. " ] }, { diff --git a/examples/chatgpt/gpt_actions_library/gpt_action_googleads_adzviser.ipynb b/examples/chatgpt/gpt_actions_library/gpt_action_googleads_adzviser.ipynb index 07bad46f59..39da631e34 100644 --- a/examples/chatgpt/gpt_actions_library/gpt_action_googleads_adzviser.ipynb +++ b/examples/chatgpt/gpt_actions_library/gpt_action_googleads_adzviser.ipynb @@ -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)" ] }, @@ -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", diff --git a/examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb b/examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb index f54e4872a1..5cf279a7ff 100644 --- a/examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb +++ b/examples/evaluation/Evaluate_RAG_with_LlamaIndex.ipynb @@ -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`." ] }, { diff --git a/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb b/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb index d5d87c8377..0bca882a4e 100644 --- a/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb +++ b/examples/object_oriented_agentic_approach/Secure_code_interpreter_tool_for_LLM_agents.ipynb @@ -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",