Skip processing of meta tokens in Telegram bot response handling

This commit is contained in:
sal
2026-05-31 23:06:31 +09:00
parent 8c99562e0b
commit a0de6386bc
+3
View File
@@ -102,6 +102,9 @@ async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE) ->
await reply_msg.edit_text(accumulated)
break
if isinstance(token, dict) and "__meta" in token:
continue # 진행 메시지는 Telegram에 표시하지 않음
accumulated += token
now = time.monotonic()