From 6471945076fafbe96389732f7151b187268ba776 Mon Sep 17 00:00:00 2001 From: Pavel Garaev Date: Fri, 24 Oct 2025 19:56:01 +0400 Subject: [PATCH] fix: conditionally render system instructions in Chat component --- src/lib/components/playground/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/playground/Chat.svelte b/src/lib/components/playground/Chat.svelte index 5b4d179429..c395c6fe6a 100644 --- a/src/lib/components/playground/Chat.svelte +++ b/src/lib/components/playground/Chat.svelte @@ -224,7 +224,7 @@ {$i18n.t('System Instructions')} - {#if !showSystem} + {#if !showSystem && system.trim()}
{system}