namespace Yi.Framework.Stock.Domain.Managers; public class SemanticKernelOptions { /// /// OpenAI 模型 ID /// public string ModelId { get; set; } = string.Empty; /// /// OpenAI API 密钥 /// public string ApiKey { get; set; } = string.Empty; /// /// API 端点地址 /// public string Endpoint { get; set; } = string.Empty; /// /// 最大生成令牌数 /// public int MaxTokens { get; set; } = 1000; /// /// 插件目录路径 /// public string PluginsDirectoryPath { get; set; } = string.Empty; }