diff --git a/LLama.Examples/LLama.Examples.csproj b/LLama.Examples/LLama.Examples.csproj index 02066fa0..b1624eea 100644 --- a/LLama.Examples/LLama.Examples.csproj +++ b/LLama.Examples/LLama.Examples.csproj @@ -29,7 +29,7 @@ - + diff --git a/LLama.KernelMemory/LLamaSharp.KernelMemory.csproj b/LLama.KernelMemory/LLamaSharp.KernelMemory.csproj index c26471a1..4a1d44e9 100644 --- a/LLama.KernelMemory/LLamaSharp.KernelMemory.csproj +++ b/LLama.KernelMemory/LLamaSharp.KernelMemory.csproj @@ -29,7 +29,7 @@ - + diff --git a/LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs b/LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs index 2abea981..986df0be 100644 --- a/LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs +++ b/LLama.SemanticKernel/ChatCompletion/LLamaSharpChatResult.cs @@ -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 _stream; diff --git a/LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj b/LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj index c752aca7..4122bf66 100644 --- a/LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj +++ b/LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj @@ -33,7 +33,7 @@ - + diff --git a/LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs b/LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs index e1643481..b66013ba 100644 --- a/LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs +++ b/LLama.SemanticKernel/TextCompletion/LLamaTextResult.cs @@ -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 _text;