Files

9 lines
247 B
C#
Raw Permalink 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
{
public string ModelId { get; set; }
public string Endpoint { get; set; }
public string ApiKey { get; set; }
}
}