diff options
author | RA-Phil-K <122104365+RA-Phil-K@users.noreply.github.com> | 2023-09-04 11:59:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 02:59:13 -0700 |
commit | 9016d55516f7243a21ae1caa81024d7146d232a9 (patch) | |
tree | 175d1cdd4157a2de6c890b82a5a7b52bd74b66ff /docs | |
parent | d3134f84562f7e0fb91c49f39eeb1b449692fa8e (diff) | |
download | sncontinue-9016d55516f7243a21ae1caa81024d7146d232a9.tar.gz sncontinue-9016d55516f7243a21ae1caa81024d7146d232a9.tar.bz2 sncontinue-9016d55516f7243a21ae1caa81024d7146d232a9.zip |
Correct import for Llama.cpp (#451)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/customization.md | 2 |
1 files changed, 1 insertions, 1 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( ... |