pub type Prompt = Data<String>;
A prompt.
A prompt input for an LLM model.
pub enum Prompt { Chat(ChatMessageCollection<String>), Text(String), }
A collection of chat messages.
A text prompt.