You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/ollama-guide.mdx
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,16 +86,17 @@ schema: v1
86
86
models:
87
87
- uses: ollama/deepseek-r1-32b
88
88
- uses: ollama/qwen2.5-coder-7b
89
-
- uses: ollama/mistral
89
+
- uses: ollama/gpt-oss-20b
90
90
```
91
91
92
92
<Warning>
93
-
**Important**: When using hub blocks like `ollama/deepseek-r1-32b`, you must first pull the exact model locally:
93
+
**Important**: Hub blocks only provide configuration - you still need to pull the model locally. The hub block `ollama/deepseek-r1-32b` configures Continue to use `model: deepseek-r1:32b`, but the actual model must be installed:
94
94
```bash
95
-
# The hub block name must match the pulled model
96
-
ollama pull deepseek-r1:32b # For ollama/deepseek-r1-32b hub block
95
+
# Check what the hub block expects (view on hub.continue.dev)
96
+
# Then pull that exact model tag locally
97
+
ollama pull deepseek-r1:32b # Required for ollama/deepseek-r1-32b hub block
97
98
```
98
-
If the model isn't pulled, you'll get: `Error: 404 model "deepseek-r1:32b" not found, try pulling it first`
99
+
If the model isn't installed, Ollama will return: `404 model "deepseek-r1:32b" not found, try pulling it first`
99
100
</Warning>
100
101
101
102
### Method 2: Manual Configuration
@@ -167,6 +168,7 @@ models:
167
168
**Known Issue**: Some models like DeepSeek R1 may show "Agent mode is not supported" or "does not support tools" even with capabilities configured. This is a known limitation where the model's actual tool support differs from its advertised capabilities.
168
169
</Warning>
169
170
171
+
170
172
#### If Agent Mode Shows "Not Supported"
171
173
172
174
1. First, add `capabilities: [tool_use]` to your model config
0 commit comments