From 2115fb76de27328a1685052d2b4d310b1109e28b Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Mon, 24 Jun 2024 22:08:02 +0100 Subject: [PATCH] Replace llm variable with model (#23280) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The code snippet under ‘pdfs_qa’ contains an small incorrect code example , resulting in users getting errors. This pr replaces ‘llm’ variable with ‘model’ to help user avoid a NameError message. Resolves #22689 If no one reviews your PR within a few days, please @-mention one of baskaryan, efriis, eyurtsev, ccurme, vbarda, hwchase17. --------- Co-authored-by: Chester Curme --- docs/docs/tutorials/pdf_qa.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/pdf_qa.ipynb b/docs/docs/tutorials/pdf_qa.ipynb index 00b2b4c11c..e8931ff24c 100644 --- a/docs/docs/tutorials/pdf_qa.ipynb +++ b/docs/docs/tutorials/pdf_qa.ipynb @@ -122,7 +122,7 @@ "```{=mdx}\n", "import ChatModelTabs from \"@theme/ChatModelTabs\";\n", "\n", - "\n", + "\n", "```" ] },