From 0333b8af9c950d6e506bf210e57dbcf448112739 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 27 Jul 2025 10:52:28 +0800 Subject: [PATCH] . --- meta_ui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta_ui.py b/meta_ui.py index 7bed530..583b53e 100644 --- a/meta_ui.py +++ b/meta_ui.py @@ -96,6 +96,7 @@ with gr.Blocks(title="Base 模型测试 UI") as demo: chatbot = gr.ChatInterface( fn=lambda m, h: chat(m, h, max_tokens.value, temperature.value), + additional_inputs=[max_tokens, temperature], # ✅ 添加这一行 title=None )