From d07ba80572b3f6c7a7cc0a16949eb5bc0c2ad66a Mon Sep 17 00:00:00 2001 From: Sameer Vohra Date: Sun, 5 Jan 2025 22:57:54 -0500 Subject: [PATCH] Update frames.py fix minor typo in docs --- src/pipecat/frames/frames.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/frames/frames.py b/src/pipecat/frames/frames.py index e9d942b4e..4c6e396c2 100644 --- a/src/pipecat/frames/frames.py +++ b/src/pipecat/frames/frames.py @@ -274,7 +274,7 @@ def __str__(self): class LLMMessagesFrame(DataFrame): """A frame containing a list of LLM messages. Used to signal that an LLM service should run a chat completion and emit an LLMFullResponseStartFrame, - TextFrames and an LLMFullResponseStartFrame. Note that the `messages` + TextFrames and an LLMFullResponseEndFrame. Note that the `messages` property in this class is mutable, and will be be updated by various aggregators.