namespace LLama.Web.Models { public class PromptOptions { public string Name { get; set; } public string Path { get; set; } public string Prompt { get; set; } public List AntiPrompt { get; set; } public List OutputFilter { get; set; } } }