namespace LLama.Web.Models { public class LLamaOptions { public List Models { get; set; } public List Prompts { get; set; } = new List(); public List Parameters { get; set; } = new List(); public void Initialize() { foreach (var prompt in Prompts) { if (File.Exists(prompt.Path)) { prompt.Prompt = File.ReadAllText(prompt.Path).Trim(); } } } } }