File tree 5 files changed +19
-4
lines changed
5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 16
16
<ItemGroup >
17
17
<PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 9.0.3" />
18
18
<PackageReference Include =" Microsoft.KernelMemory.Core" Version =" 0.97.250211.1" />
19
- <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.29 .0" />
19
+ <PackageReference Include =" Microsoft.SemanticKernel" Version =" 1.44 .0" />
20
20
<PackageReference Include =" Microsoft.SemanticKernel.Plugins.Memory" Version =" 1.6.2-alpha" />
21
21
<PackageReference Include =" NAudio" Version =" 2.2.1" />
22
22
<PackageReference Include =" SixLabors.ImageSharp" Version =" 3.1.7" />
Original file line number Diff line number Diff line change 27
27
</PropertyGroup >
28
28
29
29
<ItemGroup >
30
- <PackageReference Include =" Microsoft.KernelMemory.Abstractions" Version =" 0.96.250120 .1" />
30
+ <PackageReference Include =" Microsoft.KernelMemory.Abstractions" Version =" 0.98.250323 .1" />
31
31
</ItemGroup >
32
32
33
33
<ItemGroup >
Original file line number Diff line number Diff line change 34
34
</PropertyGroup >
35
35
36
36
<ItemGroup >
37
- <PackageReference Include =" Microsoft.SemanticKernel.Abstractions" Version =" 1.39 .0" />
37
+ <PackageReference Include =" Microsoft.SemanticKernel.Abstractions" Version =" 1.44 .0" />
38
38
</ItemGroup >
39
39
40
40
<ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
Original file line number Diff line number Diff line change 9
9
10
10
<ItemGroup >
11
11
<PackageReference Include =" Microsoft.VisualStudio.Validation" Version =" 17.8.8" />
12
- <PackageReference Include =" Microsoft.AspNetCore.OpenApi" Version =" 8.0.11 " />
12
+ <PackageReference Include =" Microsoft.AspNetCore.OpenApi" Version =" 8.0.14 " />
13
13
<PackageReference Include =" Swashbuckle.AspNetCore" Version =" 7.3.1" />
14
14
</ItemGroup >
15
15
Original file line number Diff line number Diff line change @@ -19,4 +19,19 @@ public enum DecodeResult
19
19
/// Could not find a KV slot for the batch (try reducing the size of the batch or increase the context)
20
20
/// </summary>
21
21
NoKvSlot = 1 ,
22
+
23
+ /// <summary>
24
+ /// Compute was aborted (e.g. due to callback request or timeout)
25
+ /// </summary>
26
+ ComputeAborted = 2 ,
27
+
28
+ /// <summary>
29
+ /// Failed to allocate memory or reserve output space
30
+ /// </summary>
31
+ AllocationFailed = - 2 ,
32
+
33
+ /// <summary>
34
+ /// General failure during decode (e.g. internal error, slot failure)
35
+ /// </summary>
36
+ DecodeFailed = - 3 ,
22
37
}
You can’t perform that action at this time.
0 commit comments