mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-06 09:20:33 +00:00
8119ff4df0
* First workin version of the C# bindings * Update README.md Signed-off-by: mvenditto <venditto.matteo@gmail.com> * Added more docs + fixed prompt callback signature * build scripts revision * Added .editorconfig + fixed style issues --------- Signed-off-by: mvenditto <venditto.matteo@gmail.com>
50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System.Text;
|
|
using System.Threading.Channels;
|
|
|
|
namespace Gpt4All;
|
|
|
|
public record TextPredictionStreamingResult : ITextPredictionStreamingResult
|
|
{
|
|
private readonly Channel<string> _channel;
|
|
|
|
public bool Success { get; internal set; } = true;
|
|
|
|
public string? ErrorMessage { get; internal set; }
|
|
|
|
public Task Completion => _channel.Reader.Completion;
|
|
|
|
internal TextPredictionStreamingResult()
|
|
{
|
|
_channel = Channel.CreateUnbounded<string>();
|
|
}
|
|
|
|
internal bool Append(string token)
|
|
{
|
|
return _channel.Writer.TryWrite(token);
|
|
}
|
|
|
|
internal void Complete()
|
|
{
|
|
_channel.Writer.Complete();
|
|
}
|
|
|
|
public async Task<string> GetPredictionAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
var sb = new StringBuilder();
|
|
|
|
var tokens = GetPredictionStreamingAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
await foreach (var token in tokens)
|
|
{
|
|
sb.Append(token);
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
|
|
public IAsyncEnumerable<string> GetPredictionStreamingAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return _channel.Reader.ReadAllAsync(cancellationToken);
|
|
}
|
|
}
|