using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BeWo.Service { public enum WebConfigSetting { OllamaUrl, Ollama2Url, XRechnungApiUrl, StoredFilesFolderPath, StoredTenantFilesFolderPath, HelloWorldPdfLocation, BeWoPlanerServiceRoot, AiPromptsUrl } [DefaultValue(None)] public enum WebSecretConfigSetting { None = -1, OllamaKey, Ollama2Key, GetGkvSumApiKey, DownloadReportApiKey, OpenrouteServiceApiKey, GoogleDistanceMatrixApiKey, GkvSecretKey, AppStatusApiKey } [DefaultValue(None)] public enum IPAddressList { None = -1, AdminApi } [DefaultValue(None)] public enum SpecialConfig { None = -1, CustomFunctionPreSystemPrompt, CustomPreSystemPrompt } }