Skip to content

Commit 5996b40

Browse files
authored
Merge branch 'SciSharp:master' into master
2 parents 80d75d9 + eff8002 commit 5996b40

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

LLama.Examples/LLama.Examples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.3" />
1818
<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" />
2020
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.6.2-alpha" />
2121
<PackageReference Include="NAudio" Version="2.2.1" />
2222
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />

LLama.KernelMemory/LLamaSharp.KernelMemory.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</PropertyGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.96.250120.1" />
30+
<PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.98.250323.1" />
3131
</ItemGroup>
3232

3333
<ItemGroup>

LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</PropertyGroup>
3535

3636
<ItemGroup>
37-
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.39.0" />
37+
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.44.0" />
3838
</ItemGroup>
3939

4040
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">

LLama.WebAPI/LLama.WebAPI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<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" />
1313
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.1" />
1414
</ItemGroup>
1515

LLama/Native/DecodeResult.cs

+15
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,19 @@ public enum DecodeResult
1919
/// Could not find a KV slot for the batch (try reducing the size of the batch or increase the context)
2020
/// </summary>
2121
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,
2237
}

0 commit comments

Comments
 (0)