From a1a2714c0168580a4171c813c7dc7028c63487b7 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Wed, 14 Jan 2026 16:32:42 -0500 Subject: [PATCH] feat(telegram): prefix voice transcriptions for agent awareness (#135) --- src/takopi/telegram/loop.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/takopi/telegram/loop.py b/src/takopi/telegram/loop.py index 5c00aed..e23b6a5 100644 --- a/src/takopi/telegram/loop.py +++ b/src/takopi/telegram/loop.py @@ -819,6 +819,7 @@ async def run_main_loop( ) if text is None: continue + text = f"(voice transcribed) {text}" topic_key = ( _topic_key(msg, cfg, scope_chat_ids=topics_chat_ids) if topic_store is not None