namespace MAF1.Utils; /// LLM 连接信息。不要把真实 ApiKey 提交进 git。 public sealed class LlmOptions { public string ApiKey { get; set; } = ""; public string Endpoint { get; set; } = ""; public string Model { get; set; } = ""; }