Skip to content

Commit

Permalink
fix sk update bug
Browse files Browse the repository at this point in the history
xuzeyu91 committed Oct 24, 2024
1 parent fad2b4e commit dedafdd
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/AntSK.Domain/AntSK.Domain.csproj
Original file line number Diff line number Diff line change
@@ -29,8 +29,6 @@
<PackageReference Include="Microsoft.SemanticKernel" Version="$(SKVersion)" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="$(SKVersion)" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Core" Version="$(SKVersion)-alpha" />
<PackageReference Include="Microsoft.KernelMemory.AI.OpenAI" Version="$(KMVersion)" />
<PackageReference Include="Microsoft.KernelMemory.AI.AzureOpenAI" Version="$(KMVersion)" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="$(KMVersion)" />
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="$(KMVersion)" />
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Qdrant" Version="$(KMVersion)" />
2 changes: 1 addition & 1 deletion src/AntSK.Domain/Domain/Other/Bge/BgeEmbeddingConfig.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.KernelMemory.AI;
using Microsoft.KernelMemory.AI.OpenAI;
using Python.Runtime;
using Serilog;
using System;
2 changes: 1 addition & 1 deletion src/AntSK.Domain/Domain/Other/KMExcelHandler.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using AntSK.Domain.Domain.Model.Constant;
using AntSK.Domain.Utils;
using Microsoft.Extensions.Logging;
using Microsoft.KernelMemory.AI;
using Microsoft.KernelMemory.AI.OpenAI;
using Microsoft.KernelMemory.Configuration;
using Microsoft.KernelMemory.DataFormats.Text;
using Microsoft.KernelMemory.Diagnostics;
2 changes: 1 addition & 1 deletion src/AntSK.Domain/Domain/Other/QAHandler.cs
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
using AntSK.Domain.Utils;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.KernelMemory.AI;
using Microsoft.KernelMemory.AI.OpenAI;
using Microsoft.KernelMemory.Configuration;
using Microsoft.KernelMemory.DataFormats.Text;
using Microsoft.KernelMemory.Diagnostics;
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<KMVersion>0.90.241021.1</KMVersion>
<KMVersion>0.71.240820.1</KMVersion>
<NewtonsoftVersion>13.0.3</NewtonsoftVersion>
<RestSharpVersion>112.1.0</RestSharpVersion>
<SKVersion>1.24.1</SKVersion>
<SKVersion>1.17.2</SKVersion>
</PropertyGroup>
</Project>

0 comments on commit dedafdd

Please sign in to comment.