diff options
-rw-r--r-- | docs/docs/customization.md | 2 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/docs/customization.md b/docs/docs/customization.md index 2d1d8ba4..356a14cb 100644 --- a/docs/docs/customization.md +++ b/docs/docs/customization.md @@ -155,7 +155,7 @@ Run the llama.cpp server binary to start the API server. If running on a remote After it's up and running, change `~/.continue/config.py` to look like this: ```python -from continuedev.src.continuedev.libs.llm.ggml import GGML +from continuedev.src.continuedev.libs.llm.llamacpp import LlamaCpp config = ContinueConfig( ... diff --git a/extension/package-lock.json b/extension/package-lock.json index 8249cea1..cd4dedd9 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.366", + "version": "0.0.367", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.366", + "version": "0.0.367", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 2325992d..3f9fca49 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,7 +1,7 @@ { "name": "continue", "icon": "media/terminal-continue.png", - "version": "0.0.366", + "version": "0.0.367", "repository": { "type": "git", "url": "https://github.com/continuedev/continue" |