From f904c754e26002829c596c3d39f04b340360f80e Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 27 Jul 2025 18:44:59 +0800 Subject: [PATCH] . --- meta_ui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta_ui.py b/meta_ui.py index db68a05..38754b8 100644 --- a/meta_ui.py +++ b/meta_ui.py @@ -121,6 +121,8 @@ def chat( while True: try: result = result_q.get(timeout=0.1) + if isinstance(result, str): + result = {"text": result} yield result, log_state except Empty: continue