Chat Model
A model fine-tuned to handle multi-turn conversational exchanges between a user and an assistant.
Full Definition
A chat model is an instruction-tuned model further specialised to maintain context across a conversation history formatted as a sequence of alternating user and assistant turns. It is trained to be helpful, harmless, and coherent across multiple exchanges — remembering what was said earlier, updating its understanding as the conversation evolves, and avoiding contradictions. Chat models use a special message format (e.g., OpenAI's messages array with system/user/assistant roles) to represent conversation state. They are the model type powering ChatGPT, Claude.ai, and most consumer AI products.
Examples
GPT-4o responding to a series of code debugging questions where each turn builds on the previous output.
Claude holding a multi-turn tutoring conversation, referencing an explanation it gave three turns earlier.
Apply this in your prompts
PromptIt automatically uses techniques like Chat Model to build better prompts for you.
Related guides
Related Terms
Instruction-Tuned Model
A model fine-tuned on instruction-response pairs to follow natural-language dire…
View →System Prompt
The instruction layer sent before any user message that controls how an AI model…
View →Context Window
The maximum number of tokens a model can process in a single input-output intera…
View →