From 3b61d0b41a217ae5499d7b0aa9b5801b64e760c5 Mon Sep 17 00:00:00 2001 From: Moishe Lettvin Date: Mon, 18 Mar 2024 13:38:00 -0400 Subject: [PATCH] fix typos --- src/dailyai/pipeline/frames.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dailyai/pipeline/frames.py b/src/dailyai/pipeline/frames.py index bb2bf5a10..194de910c 100644 --- a/src/dailyai/pipeline/frames.py +++ b/src/dailyai/pipeline/frames.py @@ -154,7 +154,7 @@ class BotStoppedSpeakingFrame(Frame): @dataclass() class LLMFunctionStartFrame(Frame): - """Emitted when the LLM receives the beginngin of a function call + """Emitted when the LLM receives the beginning of a function call completion. A frame processor can use this frame to indicate that it should start preparing to make a function call, if it can do so in the absence of any arguments.""" @@ -163,6 +163,6 @@ class LLMFunctionStartFrame(Frame): @dataclass() class LLMFunctionCallFrame(Frame): - """Emitted when the LLM has received an entire function call completions.""" + """Emitted when the LLM has received an entire function call completion.""" function_name: str arguments: str