Change Namespace

This commit is contained in:
Tim Miller 2023-08-31 22:22:38 +09:00
parent 326c802be7
commit 2bde188c64
10 changed files with 11 additions and 11 deletions

View File

@ -6,8 +6,8 @@ using LLama.Common;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.AI.ChatCompletion;
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
{

View File

@ -6,7 +6,7 @@ using LLama.Common;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.AI.ChatCompletion;
using Microsoft.SemanticKernel.AI.TextCompletion;
using Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion;
using LLamaSharp.SemanticKernel.TextCompletion;
namespace LLama.Examples.NewVersion
{

View File

@ -1,6 +1,6 @@
using static LLama.LLamaTransforms;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
/// <summary>
/// Default HistoryTransform Patch

View File

@ -9,7 +9,7 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
/// <summary>
/// LLamaSharp ChatCompletion

View File

@ -1,6 +1,6 @@
using Microsoft.SemanticKernel.AI.ChatCompletion;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
/// <summary>
/// LLamaSharp Chat Message

View File

@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Text;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.ChatCompletion;
namespace LLamaSharp.SemanticKernel.ChatCompletion;
internal sealed class LLamaSharpChatResult : IChatStreamingResult
{

View File

@ -1,7 +1,7 @@
using Microsoft.SemanticKernel.AI.ChatCompletion;
using Microsoft.SemanticKernel.AI.TextCompletion;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama;
namespace LLamaSharp.SemanticKernel;
internal static class ExtensionMethods
{

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
<RootNamespace>Microsoft.SemanticKernel.Connectors.AI.LLama</RootNamespace>
<RootNamespace>LLamaSharp.SemanticKernel</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<Platforms>AnyCPU;x64;Arm64</Platforms>

View File

@ -2,7 +2,7 @@
using LLama.Abstractions;
using Microsoft.SemanticKernel.AI.TextCompletion;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion;
namespace LLamaSharp.SemanticKernel.TextCompletion;
public sealed class LLamaSharpTextCompletion : ITextCompletion
{

View File

@ -3,7 +3,7 @@ using Microsoft.SemanticKernel.Orchestration;
using System.Runtime.CompilerServices;
using System.Text;
namespace Microsoft.SemanticKernel.Connectors.AI.LLama.TextCompletion;
namespace LLamaSharp.SemanticKernel.TextCompletion;
internal sealed class LLamaTextResult : ITextStreamingResult
{