mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00:00
11 lines
212 B
C#
11 lines
212 B
C#
|
namespace Gpt4All;
|
|||
|
|
|||
|
public interface ITextPredictionResult
|
|||
|
{
|
|||
|
bool Success { get; }
|
|||
|
|
|||
|
string? ErrorMessage { get; }
|
|||
|
|
|||
|
Task<string> GetPredictionAsync(CancellationToken cancellationToken = default);
|
|||
|
}
|