namespace Gpt4All; /// /// Formats a prompt /// public interface IPromptFormatter { /// /// Format the provided prompt /// /// the input prompt /// The formatted prompt string FormatPrompt(string prompt); }