初始提交

This commit is contained in:
2026-08-26 18:06:02 +08:00
commit 5544788917
53 changed files with 4101 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace MAF1.Utils;
public sealed class LlmOptions
{
public string ApiKey { get; set; } = "";
public string Endpoint { get; set; } = "";
public string Model { get; set; } = "";
}