mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-06 09:20:33 +00:00
7 lines
204 B
C#
7 lines
204 B
C#
|
namespace Gpt4All;
|
|||
|
|
|||
|
public interface ITextPredictionStreamingResult : ITextPredictionResult
|
|||
|
{
|
|||
|
IAsyncEnumerable<string> GetPredictionStreamingAsync(CancellationToken cancellationToken = default);
|
|||
|
}
|