2026-08-26 18:06:02 +08:00
|
|
|
namespace MAF1.Utils;
|
|
|
|
|
|
2026-08-28 11:51:48 +08:00
|
|
|
/// <summary>LLM 连接信息。不要把真实 ApiKey 提交进 git。</summary>
|
2026-08-26 18:06:02 +08:00
|
|
|
public sealed class LlmOptions
|
|
|
|
|
{
|
|
|
|
|
public string ApiKey { get; set; } = "";
|
|
|
|
|
public string Endpoint { get; set; } = "";
|
|
|
|
|
public string Model { get; set; } = "";
|
|
|
|
|
}
|