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\")" ]