From 9e55d5461fd56e8967ef1d38daafe5e7a243b026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peer=20Sch=C3=BCtt?= <20603780+peerschuett@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:01:17 +0100 Subject: [PATCH] Added the current date to the default system prompt. --- app/MindWork AI Studio/Chat/SystemPrompts.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Chat/SystemPrompts.cs b/app/MindWork AI Studio/Chat/SystemPrompts.cs index 0ed69b9f..c68e511d 100644 --- a/app/MindWork AI Studio/Chat/SystemPrompts.cs +++ b/app/MindWork AI Studio/Chat/SystemPrompts.cs @@ -2,5 +2,5 @@ namespace AIStudio.Chat; public static class SystemPrompts { - public const string DEFAULT = "You are a helpful assistant!"; + public static readonly string DEFAULT = $"You are a helpful assistant! Today is {DateTime.Today:yyyy-MM-dd}."; } \ No newline at end of file