mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
9eb81cb549
* Added support for custom prompt formatting * more docs added * bump version
15 lines
325 B
C#
15 lines
325 B
C#
namespace Gpt4All;
|
|
|
|
/// <summary>
|
|
/// Formats a prompt
|
|
/// </summary>
|
|
public interface IPromptFormatter
|
|
{
|
|
/// <summary>
|
|
/// Format the provided prompt
|
|
/// </summary>
|
|
/// <param name="prompt">the input prompt</param>
|
|
/// <returns>The formatted prompt</returns>
|
|
string FormatPrompt(string prompt);
|
|
}
|