namespace LLama.Web.Common { public interface ISessionConfig { string AntiPrompt { get; set; } List AntiPrompts { get; set; } LLamaExecutorType ExecutorType { get; set; } string Model { get; set; } string OutputFilter { get; set; } List OutputFilters { get; set; } string Prompt { get; set; } } }