From c4a524267440e716dbe922f74043f3bf2dc55706 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 25 May 2024 14:08:48 +0200 Subject: [PATCH] Migrated back to stream directly into the Markdown renderer; due to its update, this seems now be possible. --- .../Chat/ContentBlockComponent.razor | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor index eebdb72..cda11f9 100644 --- a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor +++ b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor @@ -35,16 +35,7 @@ } else { - @if (this.Content.IsStreaming) - { - - @textContent.Text - - } - else - { - - } + } }