Added the current date to the default system prompt.

This commit is contained in:
Peer Schütt 2026-01-15 11:01:17 +01:00
parent eb39d130b9
commit 9e55d5461f

View File

@ -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}.";
}