SemanticKernelOptions.cs 206 Bytes
namespace Yi.Framework.Core.Options;

public class SemanticKernelOptions
{
    public List<string> ModelIds { get; set; }
    public string Endpoint { get; set; }
    public string ApiKey { get; set; }
}