input/output -> receive/send queues, for transport service

This commit is contained in:
Moishe Lettvin
2024-01-16 21:11:38 -05:00
parent 755059c358
commit 115b744861
3 changed files with 22 additions and 21 deletions

View File

@@ -21,7 +21,7 @@ async def main(room_url):
llm_to_tts_queue = asyncio.Queue()
tts = ElevenLabsTTSService(
llm_to_tts_queue, transport.get_async_output_queue(), voice_id="29vD33N1CtxCmqQRPOHJ"
llm_to_tts_queue, transport.get_async_send_queue(), voice_id="29vD33N1CtxCmqQRPOHJ"
)
llm = AzureLLMService(text_to_llm_queue, llm_to_tts_queue)