mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-04 12:00:10 +00:00
9eb81cb549
* Added support for custom prompt formatting * more docs added * bump version
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; }
|
|
}
|