From c194828be063a6e8e1fb6156e139e0d109a2b26c Mon Sep 17 00:00:00 2001 From: Sanskar Tanwar <142409040+SanskarTanwarShorthillsAI@users.noreply.github.com> Date: Thu, 17 Aug 2023 14:36:49 +0530 Subject: [PATCH] Fixed Typo in Fallbacks.ipynb (#9373) Removed extra "the" in the sentence about the chicken crossing the road in fallbacks.ipynb. The sentence now reads correctly: "Why did the chicken cross the road?" This resolves the grammatical error and improves the overall quality of the content. @baskaryan , @hinthornw , @hwchase17 --- docs/extras/guides/fallbacks.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extras/guides/fallbacks.ipynb b/docs/extras/guides/fallbacks.ipynb index b77f3ee128..2dd7c6f594 100644 --- a/docs/extras/guides/fallbacks.ipynb +++ b/docs/extras/guides/fallbacks.ipynb @@ -84,7 +84,7 @@ "# Let's use just the OpenAI LLm first, to show that we run into an error\n", "with patch('openai.ChatCompletion.create', side_effect=RateLimitError()):\n", " try:\n", - " print(openai_llm.invoke(\"Why did the the chicken cross the road?\"))\n", + " print(openai_llm.invoke(\"Why did the chicken cross the road?\"))\n", " except:\n", " print(\"Hit error\")" ]