8 lines
310 B
C#
Raw Normal View History

2024-06-19 17:25:18 -07:00
internal static class PromptDefaults
{
public const string SystemPrompt = @"You are fulfilling roles on a software development team.
Provide a response to the following prompt, do not provide any additional output.";
public const string UserPrompt = @"Let's build a ToDoList Application!";
2024-06-19 17:25:18 -07:00
}