Blame view

Yi.Abp.Net8/framework/Yi.Framework.Core/Options/SemanticKernelOptions.cs 206 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
  namespace Yi.Framework.Core.Options;
  
  public class SemanticKernelOptions
  {
      public List<string> ModelIds { get; set; }
      public string Endpoint { get; set; }
      public string ApiKey { get; set; }
  }