summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-08-24 11:39:09 -0700
committerGitHub <noreply@github.com>2023-08-24 11:39:09 -0700
commit972ef7254b2d3a60042eb1fcd84a6f647e138a76 (patch)
tree4db4c24cf4af8952e078f741f22c9d278335132c /docs
parent243a0b91e3956a9cd61f17f6b5eeb7a41a56d6c9 (diff)
downloadsncontinue-972ef7254b2d3a60042eb1fcd84a6f647e138a76.tar.gz
sncontinue-972ef7254b2d3a60042eb1fcd84a6f647e138a76.tar.bz2
sncontinue-972ef7254b2d3a60042eb1fcd84a6f647e138a76.zip
change ollama instructions
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/walkthroughs/codellama.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/walkthroughs/codellama.md b/docs/docs/walkthroughs/codellama.md
index 78fff5ab..9529c703 100644
--- a/docs/docs/walkthroughs/codellama.md
+++ b/docs/docs/walkthroughs/codellama.md
@@ -29,8 +29,8 @@ config = ContinueConfig(
## Ollama
1. Download Ollama [here](https://ollama.ai/) (it should walk you through the rest of these steps)
-2. Open a terminal and run `ollama pull codellama:7b-q4_0`\*
-3. Run `ollama serve codellama:7b-q4_0`
+2. Open a terminal and run `ollama pull codellama:7b`\*
+3. Run `ollama serve codellama:7b`
4. Change your Continue config file to look like this:
```python
@@ -39,7 +39,7 @@ from continuedev.src.continuedev.libs.llm.ollama import Ollama
config = ContinueConfig(
...
models=Models(
- default=Ollama(model="codellama:7b-q4_0")
+ default=Ollama(model="codellama:7b")
)
)
```