Skip to main content

Chat Role

A "chat model" is an LLM that is trained to respond in a conversational format. Because they should be able to answer general questions and generate complex code, the best chat models are typically large, often 405B+ parameters.

In Continue, these models are used for Chat and Actions. The selected chat model will also be used for Edit and Apply if no edit or apply models are specified, respectively.

Best overall experience

For the best overall Chat experience, you will want to use a 400B+ parameter model or one of the frontier models.

Claude Sonnet 3.5 from Anthropic

Our current top recommendation is Claude 3.7 Sonnet from Anthropic.

View the Claude 3.7 Sonnet model block on the hub.

Llama 3.1 405B from Meta

If you prefer to use an open-weight model, then Llama 3.1 405B from Meta is your best option right now. You will need to decide if you use it through a SaaS model provider (e.g. Together or Groq) or self-host it (e.g. using vLLM or Ollama).

config.yaml
models:
- name: "Llama 3.1 405B"
provider: "together"
model: "llama3.1-405b"
apiKey: <YOUR_TOGETHER_API_KEY>

GPT-4o from OpenAI

If you prefer to use a model from OpenAI, then we recommend GPT-4o.

Add the OpenAI GPT-4o block from the hub

Grok-2 from xAI

If you prefer to use a model from xAI, then we recommend Grok-2.

Add the xAI Grok-2 block from the hub

Gemini 2.0 Flash from Google

If you prefer to use a model from Google, then we recommend Gemini 2.0 Flash.

Add the Gemini 2.0 Flash block from the hub

Local, offline experience

For the best local, offline Chat experience, you will want to use a model that is large but fast enough on your machine.

Llama 3.1 8B

If your local machine can run an 8B parameter model, then we recommend running Llama 3.1 8B on your machine (e.g. using Ollama or LM Studio).

Add the Ollama Llama 3.1 8b block from the hub

DeepSeek Coder 2 16B

If your local machine can run a 16B parameter model, then we recommend running DeepSeek Coder 2 16B (e.g. using Ollama or LM Studio).

config.yaml
models:
- name: DeepSeek Coder 2 16B
provider: ollama
model: deepseek-coder-v2:16b

Other experiences

There are many more models and providers you can use with Chat beyond those mentioned above. Read more here