mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 13:41:37 +00:00
20 lines
470 B
C#
20 lines
470 B
C#
using System.Globalization;
|
|
|
|
namespace AIStudio.Chat;
|
|
|
|
public static class SystemPrompts
|
|
{
|
|
public static string Default
|
|
{
|
|
get
|
|
{
|
|
var nowUtc = DateTime.UtcNow;
|
|
var nowLocal = DateTime.Now;
|
|
|
|
return string.Create(
|
|
new CultureInfo("en-US"),
|
|
$"Today is {nowUtc:MMMM d, yyyy h:mm tt} (UTC) and {nowLocal:MMMM d, yyyy h:mm tt} (local time)."
|
|
);
|
|
}
|
|
}
|
|
} |