Browse Source

bump semantic kernel to 1.0.0-beta-6

tags/v0.8.1
xbotter 2 years ago
parent
commit
6c31f69720
No known key found for this signature in database GPG Key ID: A3F32F44E9F160E1
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      LLama.Examples/LLama.Examples.csproj
  2. +1
    -1
      LLama.KernelMemory/LLamaSharp.KernelMemory.csproj
  3. +1
    -1
      LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs
  4. +1
    -1
      LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj
  5. +1
    -1
      LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs

+ 1
- 1
LLama.Examples/LLama.Examples.csproj View File

@@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta1" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta6" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
</ItemGroup>



+ 1
- 1
LLama.KernelMemory/LLamaSharp.KernelMemory.csproj View File

@@ -29,7 +29,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.5.231030.1-preview" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.9.231114.1-preview" />
</ItemGroup>

<ItemGroup>


+ 1
- 1
LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs View File

@@ -5,7 +5,7 @@ using System.Text;

namespace LLamaSharp.SemanticKernel.ChatCompletion;

internal sealed class LLamaSharpChatResult : IChatStreamingResult
internal sealed class LLamaSharpChatResult : IChatResult, IChatStreamingResult
{
private readonly ModelResult _modelResult;
private readonly IAsyncEnumerable<string> _stream;


+ 1
- 1
LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj View File

@@ -33,7 +33,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.0-beta1" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.0-beta6" />
</ItemGroup>

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


+ 1
- 1
LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs View File

@@ -5,7 +5,7 @@ using System.Text;

namespace LLamaSharp.SemanticKernel.TextCompletion;

internal sealed class LLamaTextResult : ITextStreamingResult
internal sealed class LLamaTextResult : ITextResult, ITextStreamingResult
{
private readonly IAsyncEnumerable<string> _text;



Loading…
Cancel
Save