A simple Semantic Kernel library for .NET applications
License
—
Deps
25
Install Size
—
Vulns
✓ 0
Published
Oct 31, 2025
$ dotnet add package Ben.SemanticKernelA simple .NET library for working with Microsoft's Semantic Kernel.
通过NuGet包管理器安装:
Install-Package Ben.SemanticKernel
或者使用.NET CLI:
dotnet add package Ben.SemanticKernel
using Ben.SemanticKernel;
// 初始化聊天服务
var chatService = new ChatService(apiKey, endpoint);
// 使用聊天服务
var response = await chatService.ChatAsync("你好,请介绍一下自己");
// 导入知识到知识库
var importService = new ImportKmsService(options);
await importService.ImportFromFileAsync("path/to/file.txt");
欢迎提交Pull Request或提出Issue。
MIT