feat: incomplete working pipeline

ref: all
This commit is contained in:
Twirre Meulenbelt
2025-10-29 16:43:23 +01:00
parent 696e91a9d3
commit 2fae230977
7 changed files with 16 additions and 27 deletions

View File

@@ -45,7 +45,10 @@ class TranscriptionAgent(Agent):
async def _share_transcription(self, transcription: str):
"""Share a transcription to the other agents that depend on it."""
receiver_jids = [] # Set message receivers here
receiver_jids = [
settings.agent_settings.text_belief_extractor_agent_name
+ '@' + settings.agent_settings.host,
] # Set message receivers here
for receiver_jid in receiver_jids:
message = Message(to=receiver_jid, body=transcription)