namespace Gpt4All; public interface IGpt4AllModel : ITextPrediction, IDisposable { /// /// The prompt formatter used to format the prompt before /// feeding it to the model, if null no transformation is applied /// IPromptFormatter? PromptFormatter { get; set; } }