cartesia async fixed

This commit is contained in:
Kwindla Hultman Kramer
2024-06-06 11:24:26 -04:00
parent 3eff1e559b
commit aee3916cd1
3 changed files with 4 additions and 15 deletions

View File

@@ -19,7 +19,6 @@ from pipecat.services.cartesia import CartesiaTTSService
from pipecat.services.openai import OpenAILLMService
from pipecat.transports.services.daily import DailyParams, DailyTransport
from pipecat.vad.silero import SileroVADAnalyzer
from pipecat.processors.logger import FrameLogger
from runner import configure
@@ -73,9 +72,7 @@ async def main(room_url: str, token):
tma_in, # User responses
llm, # LLM
tts, # TTS
FrameLogger("tts out"),
transport.output(), # Transport bot output
FrameLogger("transport out"),
tma_out # Assistant spoken responses
])

View File

@@ -72,9 +72,7 @@ async def main(room_url: str, token):
tma_in, # User responses
llm, # LLM
tts, # TTS
FrameLogger("tts out"),
transport.output(), # Transport bot output
FrameLogger("transport out"),
tma_out # Assistant spoken responses
])