From b99bdbea5ec838b69914a485becd68ca6fd1e3f8 Mon Sep 17 00:00:00 2001 From: Hersh Gupta <39911286+hersh-gupta@users.noreply.github.com> Date: Mon, 9 Dec 2024 22:42:48 -0500 Subject: [PATCH] Fixing typo Fixing typo on [line 30 of tool-calling.qmd](https://github.com/posit-dev/chatlas/blob/3b7ccea32da4ba344103a78ca79e991a643628f7/docs/tool-calling.qmd#L30) from "Unfortunately, the LLM doesn't hallucinates the current..." to "Unfortunately, the LLM hallucinates the current..." to reflect the case in the motivating example. --- docs/tool-calling.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tool-calling.qmd b/docs/tool-calling.qmd index 2f430975..e77d4adb 100644 --- a/docs/tool-calling.qmd +++ b/docs/tool-calling.qmd @@ -27,7 +27,7 @@ chat = ChatOpenAI(model="gpt-4o") _ = chat.chat("How long ago exactly was the moment Neil Armstrong touched down on the moon?") ``` -Unfortunately, the LLM doesn't hallucinates the current date. Let's give the chat model the ability to determine the current time and try again. +Unfortunately, the LLM hallucinates the current date. Let's give the chat model the ability to determine the current time and try again. ### Defining a tool function