Fix off by one errors, add tests and comment

This commit is contained in:
Moishe Lettvin
2024-03-28 08:34:34 -04:00
parent 05c77bce25
commit 5c0ba1b6f0
3 changed files with 83 additions and 14 deletions

View File

@@ -65,7 +65,7 @@ async def main(room_url: str):
simple_tts_pipeline = Pipeline([azure_tts])
await simple_tts_pipeline.queue_frames(
[
TextFrame("My friend the LLM is going to tell a joke about llamas"),
TextFrame("My friend the LLM is going to tell a joke about llamas."),
EndPipeFrame(),
]
)