mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-08-14 14:13:38 +00:00
11 lines
310 B
C#
11 lines
310 B
C#
namespace Gpt4All;
|
|
|
|
public interface IGpt4AllModel : ITextPrediction, IDisposable
|
|
{
|
|
/// <summary>
|
|
/// The prompt formatter used to format the prompt before
|
|
/// feeding it to the model, if null no transformation is applied
|
|
/// </summary>
|
|
IPromptFormatter? PromptFormatter { get; set; }
|
|
}
|