Comment out transcript

This commit is contained in:
James Hush
2025-08-08 06:42:49 +08:00
parent c2c0b88bdd
commit 436080311e

View File

@@ -742,7 +742,7 @@ async def run_bot(room_url: str, token: str, body: dict) -> None:
# Human conversation branch # Human conversation branch
human_audio_blocker, human_audio_blocker,
# stt, # stt,
transcript.user(), # Captures user transcripts # transcript.user(), # Captures user transcripts
human_context_aggregator.user(), human_context_aggregator.user(),
human_llm, human_llm,
human_tts, human_tts,
@@ -750,9 +750,9 @@ async def run_bot(room_url: str, token: str, body: dict) -> None:
], ],
), ),
transport.output(), transport.output(),
transcript.assistant(), # Captures assistant transcripts # transcript.assistant(), # Captures assistant transcripts
human_context_aggregator.assistant(), human_context_aggregator.assistant(),
audiobuffer, # audiobuffer,
] ]
) )