init 初始化项目

This commit is contained in:
zyxucp
2024-02-01 23:12:53 +08:00
parent fac705d632
commit 697c254b3f
246 changed files with 12436 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xzy.KnowledgeBase.Domain.Options
{
public class AIModelOption
{
public static string KmsChatModel { get; set; }
public static string KmsEmbeddingModel { get; set; }
}
}