Skip to content

Commit

Permalink
update sk and km version
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzeyu91 committed Oct 23, 2024
1 parent c810f85 commit cb0df4d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 12 deletions.
2 changes: 2 additions & 0 deletions src/AntSK.Domain/AntSK.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<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)" />
Expand Down
2 changes: 1 addition & 1 deletion src/AntSK.Domain/Common/LLamaFactory/ProcessWrapper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Amazon.Runtime.Internal.Util;

using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
Expand Down
3 changes: 1 addition & 2 deletions src/AntSK.Domain/Domain/Other/BackGroundTaskHandler.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Amazon.Runtime.Internal.Util;
using AntSK.BackgroundTask;
using AntSK.BackgroundTask;
using AntSK.Domain.Domain.Interface;
using AntSK.Domain.Domain.Model;
using Microsoft.Extensions.DependencyInjection;
Expand Down
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.OpenAI;
using Microsoft.KernelMemory.AI;
using Python.Runtime;
using Serilog;
using System;
Expand Down
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.OpenAI;
using Microsoft.KernelMemory.AI;
using Microsoft.KernelMemory.Configuration;
using Microsoft.KernelMemory.DataFormats.Text;
using Microsoft.KernelMemory.Diagnostics;
Expand Down
2 changes: 1 addition & 1 deletion src/AntSK.Domain/Domain/Other/QAHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using AntSK.Domain.Utils;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.KernelMemory.AI.OpenAI;
using Microsoft.KernelMemory.AI;
using Microsoft.KernelMemory.Configuration;
using Microsoft.KernelMemory.DataFormats.Text;
using Microsoft.KernelMemory.Diagnostics;
Expand Down
1 change: 0 additions & 1 deletion src/AntSK.Domain/Domain/Service/KMService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using AntSK.Domain.Utils;
using AntSK.OCR;
using DocumentFormat.OpenXml.Drawing.Diagrams;
using LLama;
using Markdig;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Configuration;
Expand Down
3 changes: 1 addition & 2 deletions src/AntSK.Domain/Domain/Service/LLamaFactoryService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Amazon.Runtime.Internal.Util;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Domain.Domain.Interface;
using AntSK.Domain.Domain.Model.Dto;
using AntSK.Domain.Options;
Expand Down
1 change: 0 additions & 1 deletion src/AntSK/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using AntSK.plugins.Functions;
using AntSK.Services.Auth;
using Blazored.LocalStorage;
using LLama.Native;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Mvc;
Expand Down
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.71.240820.1</KMVersion>
<KMVersion>0.90.241021.1</KMVersion>
<NewtonsoftVersion>13.0.3</NewtonsoftVersion>
<RestSharpVersion>112.1.0</RestSharpVersion>
<SKVersion>1.17.2</SKVersion>
<SKVersion>1.24.1</SKVersion>
</PropertyGroup>
</Project>

0 comments on commit cb0df4d

Please sign in to comment.