From b8837ce0d26bc4f504b4cf4c061ac49b2b184311 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 3 Sep 2025 11:56:30 +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 5db2f55..9ca41da 100644 --- a/bricks/llm.js +++ b/bricks/llm.js @@ -134,7 +134,7 @@ bricks.ModelOutput = class extends bricks.VBox { if (typeof this.output_view === 'string'){ this.output_view = JSON.parse(this.output_view); } - if (this.response_mode == 'strean'){ + if (this.response_mode == 'stream'){ data.content = this.received_content + data.content; this.received_content = data.content }