mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-22 05:29:20 +00:00
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);
|
|
}
|