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_audio_blocker,
# stt,
transcript.user(), # Captures user transcripts
# transcript.user(), # Captures user transcripts
human_context_aggregator.user(),
human_llm,
human_tts,
@@ -750,9 +750,9 @@ async def run_bot(room_url: str, token: str, body: dict) -> None:
],
),
transport.output(),
transcript.assistant(), # Captures assistant transcripts
# transcript.assistant(), # Captures assistant transcripts
human_context_aggregator.assistant(),
audiobuffer,
# audiobuffer,
]
)