using System; using System.Collections.Generic; using System.Text; namespace LLama { public interface IChatModel { string Name { get; } IEnumerable Chat(string text, string? prompt = null); /// /// Init a prompt for chat and automatically produce the next prompt during the chat. /// /// void InitChatPrompt(string prompt); void InitChatAntiprompt(string[] antiprompt); } }