feat: 完成AzureOpenAI改造

This commit is contained in:
ccnetcore
2025-06-17 23:25:55 +08:00
parent 0cd795f57a
commit 58fcc92e4d
13 changed files with 119 additions and 95 deletions

View File

@@ -0,0 +1,9 @@
namespace Yi.Framework.SemanticKernel
{
public class SemanticKernelOptions
{
public List<string> ModelIds { get; set; }
public string Endpoint { get; set; }
public string ApiKey { get; set; }
}
}