Get rid of ThoughtTranscriptProcessor, moving its logic into AssistantTranscriptProcessor instead

This commit is contained in:
Paul Kompfner
2025-12-08 09:59:32 -05:00
parent 44aa11737b
commit ef703e9d16
3 changed files with 56 additions and 156 deletions

View File

@@ -144,10 +144,9 @@ async def run_bot(
transcript.user(), # User transcripts
context_aggregator.user(), # User responses
llm, # LLM
transcript.thought(), # Thought transcripts
tts, # TTS
transport.output(), # Transport bot output
transcript.assistant(), # Assistant transcripts
transcript.assistant(), # Assistant transcripts (including thoughts)
context_aggregator.assistant(), # Assistant spoken responses
]
)

View File

@@ -118,10 +118,9 @@ async def run_bot(
transcript.user(), # User transcripts
context_aggregator.user(), # User responses
llm, # LLM
transcript.thought(), # Thought transcripts
tts, # TTS
transport.output(), # Transport bot output
transcript.assistant(), # Assistant transcripts
transcript.assistant(), # Assistant transcripts (including thoughts)
context_aggregator.assistant(), # Assistant spoken responses
]
)