-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathSenparc.AI.Kernel.csproj
More file actions
96 lines (96 loc) · 5.37 KB
/
Copy pathSenparc.AI.Kernel.csproj
File metadata and controls
96 lines (96 loc) · 5.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>0.25.3</Version>
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<AssemblyName>Senparc.AI.Kernel</AssemblyName>
<RootNamespace>Senparc.AI.Kernel</RootNamespace>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<Description>
Senparc.AI 核心模块,支持 Semantic Kernel,提供一系列 Senparc.AI 产品基础接口实现
</Description>
<Copyright>Senparc Copyright © 2004~2025</Copyright>
<PackageTags>
Senparc,AI,Kernel,C#,AIGC,GenAI,AGI,LLM,SemanticKernel
</PackageTags>
<Authors>Jeffrey Su</Authors>
<Owners>Senparc</Owners>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<ProjectUrl>https://github.com/Senparc/Senparc.AI.Kernel</ProjectUrl>
<Title>Senparc.AI.Kernel.dll</Title>
<Summary>Senparc.AI 核心模块</Summary>
<PackageProjectUrl>https://github.com/Senparc/Senparc.AI.Kernel</PackageProjectUrl>
<PackageIcon>icon.jpg</PackageIcon>
<PackageReleaseNotes>
v0.1.0 创世
v0.2.0 添加 NeuChar OpenAI
v0.3.1 同步最新版本 Semantic Kernel,完善 Prompt 运行方法
v0.3.1.1 弃用 SenparcAiContext.ExtendContext,改为 SenparcAiContext.ContextVariables
v0.4.0 支持外部 ISenparcAiSetting 输入到模型配置过程
v0.5.0 适配 Semantic Kernel 1.0.0-beta2
v0.6.0 优化 Plugin 等通用接口
v0.7.0 支持 Senparc.AI.Kernel 1.0.1
v0.8.0 重构 IWantToRun,实现自定义 SenparcAISetting 输入
v0.9.0 重构 SenparcAiSetting,支持多模型配置
v0.10.0 添加 FastAPI 模型选项
v0.10.1 提供 SenparcAiSetting.Endpoint 属性
v0.11.0 重构 ModelName 获取方式,可根据模型平台自动获取 ModelName 和 DepolymentName
v0.12.0 完善 SemanticAiHandler.ChatAsync() 方法,提供指定保留 N 条历史记录的能力
v0.13.0 完善流式输出
v0.13.1 SemanticAiHandler.ChatConfig() 方法添加 promptTemplate 参数
v0.14.0 完善模型识别
v0.15.0 添加 HttpClient 日志功能,完善内容输出机制
v0.15.1 升级到 SK 最新版本(v1.7.1)
v0.15.2 添加 RedirectingHttpMessageHandler
v0.15.3 添加 IWantToRun.SetPromptConfigParameter() 方法
v0.15.4 升级到 SK 1.10.0,为 ImportPluginFromPromptDirectory() 方法添加已有对象的检测
v0.16.1 添加 RunAsync(kernelFunction) 方法
v0.17.0 支持 Ollama
v0.17.2 升级 AutoGen,更新对应扩展代码
[2024-09-07] v0.18.0 SemanticKernelHelper 提供重新设置 SenparcAiSetting 参数方法
[2024-11-08] v0.19.0 升级 SemanticKernel
[2024-11-14] v0.20.0 升级 AutoGen
[2024-11-19] v0.21.0 Update CO2NET, reframe for Aspire
[2025-01-25] v0.22.1 fix output result for nonstreaming request
[2025-02-02] v0.23.0-beta1 Upgrade support for Ollama, finished test for DeepSeek-r1 and nomic-embed-text:v1.5
[2025-05-10] v0.23.3 Support result.GetLastFunctionResultContent() function
[2025-05-10] v0.23.4 Upgrade for Chat history limit
[2025-06-01] v0.24.0 Upgrade for vector database, support for Qdrant; update Sample for Embedding and RAG
[2025-06-02] v0.25.0 Upgrade for vector database, support for InMemory; update Sample for Embedding and RAG
[2025-06-05] v0.25.1 Update basic Senparc.AI library
</PackageReleaseNotes>
<RepositoryUrl>https://github.com/Senparc/Senparc.AI.Kernel</RepositoryUrl>
<Configurations>Debug;Release;Test</Configurations>
<NoWarn>SKEXP0001;SKEXP0010;SKEXP0050;SKEXP0070</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.1|AnyCPU'">
<OutputPath>..\..\BuildOutPut\</OutputPath>
<DocumentationFile>..\..\BuildOutPut\netstandard2.1\Senparc.AI.Kernel.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Handlers\KernelConfigExtensions.Function.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\icon.jpg" Pack="true" Visible="false" PackagePath="" />
<None Include="KernelConfigExtensions\KernelConfigExtensions.Function.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.VectorData.Abstractions" Version="9.5.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.54.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.HuggingFace" Version="1.54.0-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.InMemory" Version="1.54.0-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Ollama" Version="1.54.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.54.0-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Redis" Version="1.54.0-preview" />
<!--<PackageReference Include="Microsoft.SemanticKernel.Functions.Semantic" Version="1.0.0-beta2" />-->
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.54.0-alpha" />
<!--<PackageReference Include="Ollama" Version="1.6.1" />-->
<!--<PackageReference Include="OllamaSharp" Version="2.0.13" />-->
<PackageReference Include="Senparc.CO2NET" Version="3.1.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Senparc.AI\Senparc.AI.csproj" />
</ItemGroup>
</Project>