| @@ -6,8 +6,8 @@ using LLama.Common; | |||||
| using Microsoft.SemanticKernel; | using Microsoft.SemanticKernel; | ||||
| using Microsoft.SemanticKernel.AI.ChatCompletion; | using Microsoft.SemanticKernel.AI.ChatCompletion; | ||||
| using Microsoft.SemanticKernel.AI.TextCompletion; | using Microsoft.SemanticKernel.AI.TextCompletion; | ||||
| using Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion; | |||||
| using Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion; | |||||
| using LLamaSharp.SemanticKernel.ChatCompletion; | |||||
| using LLamaSharp.SemanticKernel.TextCompletion; | |||||
| namespace LLama.Examples.NewVersion | namespace LLama.Examples.NewVersion | ||||
| { | { | ||||
| @@ -6,7 +6,7 @@ using LLama.Common; | |||||
| using Microsoft.SemanticKernel; | using Microsoft.SemanticKernel; | ||||
| using Microsoft.SemanticKernel.AI.ChatCompletion; | using Microsoft.SemanticKernel.AI.ChatCompletion; | ||||
| using Microsoft.SemanticKernel.AI.TextCompletion; | using Microsoft.SemanticKernel.AI.TextCompletion; | ||||
| using Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion; | |||||
| using LLamaSharp.SemanticKernel.TextCompletion; | |||||
| namespace LLama.Examples.NewVersion | namespace LLama.Examples.NewVersion | ||||
| { | { | ||||
| @@ -1,6 +1,6 @@ | |||||
| using static LLama.LLamaTransforms; | using static LLama.LLamaTransforms; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.ChatCompletion; | |||||
| /// <summary> | /// <summary> | ||||
| /// Default HistoryTransform Patch | /// Default HistoryTransform Patch | ||||
| @@ -9,7 +9,7 @@ using System.Text; | |||||
| using System.Threading; | using System.Threading; | ||||
| using System.Threading.Tasks; | using System.Threading.Tasks; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.ChatCompletion; | |||||
| /// <summary> | /// <summary> | ||||
| /// LLamaSharp ChatCompletion | /// LLamaSharp ChatCompletion | ||||
| @@ -1,6 +1,6 @@ | |||||
| using Microsoft.SemanticKernel.AI.ChatCompletion; | using Microsoft.SemanticKernel.AI.ChatCompletion; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.ChatCompletion; | |||||
| /// <summary> | /// <summary> | ||||
| /// LLamaSharp Chat Message | /// LLamaSharp Chat Message | ||||
| @@ -2,7 +2,7 @@ | |||||
| using System.Runtime.CompilerServices; | using System.Runtime.CompilerServices; | ||||
| using System.Text; | using System.Text; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.ChatCompletion; | |||||
| internal sealed class LLamaSharpChatResult : IChatStreamingResult | internal sealed class LLamaSharpChatResult : IChatStreamingResult | ||||
| { | { | ||||
| @@ -1,7 +1,7 @@ | |||||
| using Microsoft.SemanticKernel.AI.ChatCompletion; | using Microsoft.SemanticKernel.AI.ChatCompletion; | ||||
| using Microsoft.SemanticKernel.AI.TextCompletion; | using Microsoft.SemanticKernel.AI.TextCompletion; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama; | |||||
| namespace LLamaSharp.SemanticKernel; | |||||
| internal static class ExtensionMethods | internal static class ExtensionMethods | ||||
| { | { | ||||
| @@ -2,7 +2,7 @@ | |||||
| <PropertyGroup> | <PropertyGroup> | ||||
| <TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks> | <TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks> | ||||
| <RootNamespace>Microsoft.SemanticKernel.Connectors.AI.LLama</RootNamespace> | |||||
| <RootNamespace>LLamaSharp.SemanticKernel</RootNamespace> | |||||
| <Nullable>enable</Nullable> | <Nullable>enable</Nullable> | ||||
| <LangVersion>10</LangVersion> | <LangVersion>10</LangVersion> | ||||
| <Platforms>AnyCPU;x64;Arm64</Platforms> | <Platforms>AnyCPU;x64;Arm64</Platforms> | ||||
| @@ -2,7 +2,7 @@ | |||||
| using LLama.Abstractions; | using LLama.Abstractions; | ||||
| using Microsoft.SemanticKernel.AI.TextCompletion; | using Microsoft.SemanticKernel.AI.TextCompletion; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.TextCompletion; | |||||
| public sealed class LLamaSharpTextCompletion : ITextCompletion | public sealed class LLamaSharpTextCompletion : ITextCompletion | ||||
| { | { | ||||
| @@ -3,7 +3,7 @@ using Microsoft.SemanticKernel.Orchestration; | |||||
| using System.Runtime.CompilerServices; | using System.Runtime.CompilerServices; | ||||
| using System.Text; | using System.Text; | ||||
| namespace Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion; | |||||
| namespace LLamaSharp.SemanticKernel.TextCompletion; | |||||
| internal sealed class LLamaTextResult : ITextStreamingResult | internal sealed class LLamaTextResult : ITextStreamingResult | ||||
| { | { | ||||