Files
Yi.Admin/Yi.Abp.Net8/module/ai-stock/Yi.Framework.Stock.Domain/Managers/SemanticKernel/SemanticKernelOptions.cs

9 lines
254 B
C#
Raw Normal View History

2025-03-08 22:14:26 +08:00
namespace Yi.Framework.Stock.Domain.Managers.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; }
}
}