File tree 6 files changed +15
-15
lines changed
6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 15
15
<PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 8.0.0" />
16
16
<PackageReference Include =" Microsoft.Extensions.Configuration.UserSecrets" Version =" 8.0.0" />
17
17
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.10.0" />
18
- <PackageReference Include =" xunit" Version =" 2.8.1 " />
19
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.1 " >
18
+ <PackageReference Include =" xunit" Version =" 2.9.0 " />
19
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.2 " >
20
20
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
21
21
<PrivateAssets >all</PrivateAssets >
22
22
</PackageReference >
Original file line number Diff line number Diff line change 15
15
16
16
<ItemGroup >
17
17
<PackageReference Include =" Microsoft.ApplicationInsights.AspNetCore" Version =" 2.22.0" />
18
- <PackageReference Include =" Microsoft.KernelMemory.Core" Version =" 0.62.240605 .1" />
19
- <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.14 .1" />
18
+ <PackageReference Include =" Microsoft.KernelMemory.Core" Version =" 0.66.240709 .1" />
19
+ <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.15 .1" />
20
20
</ItemGroup >
21
21
22
22
</Project >
Original file line number Diff line number Diff line change 9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" Microsoft.KernelMemory.Core" Version =" 0.62.240605 .1" />
13
- <PackageReference Include =" Microsoft.KernelMemory.MemoryDb.Postgres" Version =" 0.62.240605 .1" />
14
- <PackageReference Include =" Microsoft.KernelMemory.MemoryDb.Redis" Version =" 0.62.240605 .1" />
15
- <PackageReference Include =" Microsoft.KernelMemory.Orchestration.RabbitMQ" Version =" 0.62.240605 .1" />
12
+ <PackageReference Include =" Microsoft.KernelMemory.Core" Version =" 0.66.240709 .1" />
13
+ <PackageReference Include =" Microsoft.KernelMemory.MemoryDb.Postgres" Version =" 0.66.240709 .1" />
14
+ <PackageReference Include =" Microsoft.KernelMemory.MemoryDb.Redis" Version =" 0.66.240709 .1" />
15
+ <PackageReference Include =" Microsoft.KernelMemory.Orchestration.RabbitMQ" Version =" 0.66.240709 .1" />
16
16
<PackageReference Include =" Tesseract" Version =" 5.2.0" />
17
17
</ItemGroup >
18
18
Original file line number Diff line number Diff line change 16
16
</ItemGroup >
17
17
18
18
<ItemGroup >
19
- <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 8.0.1 " />
19
+ <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 8.0.2 " />
20
20
<PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 8.0.0" />
21
21
<PackageReference Include =" Microsoft.Identity.Client" Version =" 4.61.3" />
22
22
<PackageReference Include =" System.CommandLine" Version =" 2.0.0-beta4.22272.1" />
Original file line number Diff line number Diff line change 22
22
<PackageReference Include =" Microsoft.ApplicationInsights.AspNetCore" Version =" 2.22.0" />
23
23
<PackageReference Include =" Microsoft.Azure.Cosmos" Version =" 3.41.0" />
24
24
<PackageReference Include =" Microsoft.Identity.Web" Version =" 2.20.0" />
25
- <PackageReference Include =" Microsoft.KernelMemory.Abstractions" Version =" 0.62.240605 .1" />
26
- <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.14 .1" />
27
- <PackageReference Include =" Microsoft.SemanticKernel.Abstractions" Version =" 1.14 .1" />
25
+ <PackageReference Include =" Microsoft.KernelMemory.Abstractions" Version =" 0.66.240709 .1" />
26
+ <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.15 .1" />
27
+ <PackageReference Include =" Microsoft.SemanticKernel.Abstractions" Version =" 1.15 .1" />
28
28
<PackageReference Include =" Microsoft.SemanticKernel.Connectors.AzureAISearch" Version =" 1.5.0-alpha" />
29
29
<PackageReference Include =" Microsoft.SemanticKernel.Connectors.Qdrant" Version =" 1.5.0-alpha" />
30
30
<PackageReference Include =" Microsoft.SemanticKernel.Plugins.Core" Version =" 1.5.0-alpha" />
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ await memoryClient.SearchAsync(
101
101
null ,
102
102
relevanceThreshold , // minRelevance param
103
103
resultCount ,
104
- cancellationToken ) ;
104
+ cancellationToken : cancellationToken ) ;
105
105
106
106
return searchResult ;
107
107
}
@@ -128,7 +128,7 @@ public static async Task StoreDocumentAsync(
128
128
uploadRequest . Tags . Add ( MemoryTags . TagChatId , chatId ) ;
129
129
uploadRequest . Tags . Add ( MemoryTags . TagMemory , memoryName ) ;
130
130
131
- await memoryClient . ImportDocumentAsync ( uploadRequest , cancellationToken ) ;
131
+ await memoryClient . ImportDocumentAsync ( uploadRequest , cancellationToken : cancellationToken ) ;
132
132
}
133
133
134
134
public static Task StoreMemoryAsync (
@@ -173,7 +173,7 @@ public static async Task StoreMemoryAsync(
173
173
uploadRequest . Tags . Add ( MemoryTags . TagChatId , chatId ) ;
174
174
uploadRequest . Tags . Add ( MemoryTags . TagMemory , memoryName ) ;
175
175
176
- await memoryClient . ImportDocumentAsync ( uploadRequest , cancellationToken ) ;
176
+ await memoryClient . ImportDocumentAsync ( uploadRequest , cancellationToken : cancellationToken ) ;
177
177
}
178
178
179
179
public static async Task RemoveChatMemoriesAsync (
You can’t perform that action at this time.
0 commit comments