Browse Source

Bump sk to 1.0.1

tags/0.9.1
xbotter 2 years ago
parent
commit
40ac944fb5
No known key found for this signature in database GPG Key ID: A3F32F44E9F160E1
4 changed files with 5 additions and 4 deletions
  1. +1
    -1
      LLama.Examples/Examples/SemanticKernelChat.cs
  2. +1
    -1
      LLama.Examples/Examples/SemanticKernelPrompt.cs
  3. +2
    -1
      LLama.Examples/LLama.Examples.csproj
  4. +1
    -1
      LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj

+ 1
- 1
LLama.Examples/Examples/SemanticKernelChat.cs View File

@@ -10,7 +10,7 @@ namespace LLama.Examples.Examples
{
public static async Task Run()
{
Console.WriteLine("Example from: https://github.com/microsoft/semantic-kernel/blob/main/dotnet/README.md");
Console.WriteLine("Example from: https://github.com/microsoft/semantic-kernel/blob/main/dotnet/samples/KernelSyntaxExamples/Example17_ChatGPT.cs");
Console.Write("Please input your model path: ");
var modelPath = Console.ReadLine();



+ 1
- 1
LLama.Examples/Examples/SemanticKernelPrompt.cs View File

@@ -12,7 +12,7 @@ namespace LLama.Examples.Examples
{
public static async Task Run()
{
Console.WriteLine("Example from: https://github.com/microsoft/semantic-kernel/blob/main/dotnet/samples/KernelSyntaxExamples/Example17_ChatGPT.cs");
Console.WriteLine("Example from: https://github.com/microsoft/semantic-kernel/blob/main/dotnet/README.md");
Console.Write("Please input your model path: ");
var modelPath = Console.ReadLine();



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

@@ -16,7 +16,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.18.231209.1-preview" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-rc4" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.1" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.0.1-alpha" />
<PackageReference Include="Spectre.Console" Version="0.48.0" />
</ItemGroup>



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

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

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.0-rc4" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.1" />
</ItemGroup>

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


Loading…
Cancel
Save