From feb4be82aa1a57c36a3a2d48f98a886143c715dd Mon Sep 17 00:00:00 2001 From: Mathias Colpaert Date: Tue, 8 Oct 2024 20:38:15 +0200 Subject: [PATCH] docs: in chatbot tutorial, make docs consistent with code sample (#27042) **Docs Chatbot Tutorial** The docs state that you can omit the language parameter, but the code sample to demonstrate, still contains it. Co-authored-by: Erick Friis --- docs/docs/tutorials/chatbot.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/chatbot.ipynb b/docs/docs/tutorials/chatbot.ipynb index a1f983cc486..ec24551903e 100644 --- a/docs/docs/tutorials/chatbot.ipynb +++ b/docs/docs/tutorials/chatbot.ipynb @@ -686,7 +686,7 @@ "\n", "input_messages = [HumanMessage(query)]\n", "output = app.invoke(\n", - " {\"messages\": input_messages, \"language\": language},\n", + " {\"messages\": input_messages},\n", " config,\n", ")\n", "output[\"messages\"][-1].pretty_print()"