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