From 44f3aa98c26450c1e19f88d2b7ec59e527780b9a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 12 Jan 2026 15:51:05 +0800 Subject: [PATCH] bugfix --- bricks/llm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/llm.js b/bricks/llm.js index 0234281..b8171c8 100644 --- a/bricks/llm.js +++ b/bricks/llm.js @@ -306,7 +306,7 @@ bricks.LlmIO = class extends bricks.VBox { this.kdb_w.bind('click', this.setup_kdb.bind(this)); } this.input_fields.forEach(f => { - if (f.name == 'model') this.model_inputed = True; + if (f.name == 'model') this.model_inputed = true; }); bottom_box.add_widget(this.i_w); bottom_box.add_widget(this.nm_w);