Files
AntSK/Xzy.KnowledgeBase.Domain/Options/AIModelOption.cs
2024-02-01 23:12:53 +08:00

16 lines
328 B
C#

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; }
}
}