Files
Yi.Admin/Yi.Abp.Net8/framework/Yi.Framework.SemanticKernel/SemanticKernelOptions.cs

9 lines
232 B
C#
Raw Normal View History

2025-06-17 23:25:55 +08:00
namespace Yi.Framework.SemanticKernel
2025-03-05 23:08:58 +08:00
{
2025-03-08 22:14:26 +08:00
public class SemanticKernelOptions
{
2025-03-21 18:24:59 +08:00
public List<string> ModelIds { get; set; }
2025-03-08 22:14:26 +08:00
public string Endpoint { get; set; }
public string ApiKey { get; set; }
}
}