From 130e80b60f27820d1341b2ff389469cf6fd367be Mon Sep 17 00:00:00 2001 From: eric-langenberg <55327074+eric-langenberg@users.noreply.github.com> Date: Wed, 7 Aug 2024 17:02:22 +0100 Subject: [PATCH] docs: rag.ipynb - fixing typo (#25142) Just changing gpt-3.5 to gpt-4o-mini . That's what's used in the code examples now. It just didn't get updated in the main text. --- docs/docs/tutorials/rag.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/rag.ipynb b/docs/docs/tutorials/rag.ipynb index 6ac5a6e55b6..e12b9a10264 100644 --- a/docs/docs/tutorials/rag.ipynb +++ b/docs/docs/tutorials/rag.ipynb @@ -601,7 +601,7 @@ "relevant documents, constructs a prompt, passes that to a model, and\n", "parses the output.\n", "\n", - "We’ll use the gpt-3.5-turbo OpenAI chat model, but any LangChain `LLM`\n", + "We’ll use the gpt-4o-mini OpenAI chat model, but any LangChain `LLM`\n", "or `ChatModel` could be substituted in.\n", "\n", "```{=mdx}\n",