summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-09-12 01:25:04 -0700
committerNate Sesti <sestinj@gmail.com>2023-09-12 01:25:04 -0700
commit210a02ef02341a98b4ed18095b2d656a7b994bd9 (patch)
tree7abb4633e938256572a269d54d39360633283020
parent99333fd2925b7c2bd4d20a8a12ebe909d3174aaf (diff)
downloadsncontinue-210a02ef02341a98b4ed18095b2d656a7b994bd9.tar.gz
sncontinue-210a02ef02341a98b4ed18095b2d656a7b994bd9.tar.bz2
sncontinue-210a02ef02341a98b4ed18095b2d656a7b994bd9.zip
fix: :bug: fix broken docs link
-rw-r--r--docs/docs/walkthroughs/codellama.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs/walkthroughs/codellama.md b/docs/docs/walkthroughs/codellama.md
index ff5b9cf3..ffdd51e5 100644
--- a/docs/docs/walkthroughs/codellama.md
+++ b/docs/docs/walkthroughs/codellama.md
@@ -2,7 +2,7 @@
With Continue, you can use Code Llama as a drop-in replacement for GPT-4, either by running locally with Ollama or GGML or through Replicate.
-If you haven't already installed Continue, you can do that [here](https://marketplace.visualstudio.com/items?itemName=Continue.continue). For more general information on customizing Continue, read [our customization docs](../customization.md).
+If you haven't already installed Continue, you can do that [here](https://marketplace.visualstudio.com/items?itemName=Continue.continue). For more general information on customizing Continue, read [our customization docs](../customization/overview.md).
## TogetherAI
@@ -69,6 +69,7 @@ config = ContinueConfig(
3. Reload the VS Code window for changes to take effect
## FastChat API
+
1. Setup the FastChat API (https://github.com/lm-sys/FastChat) to use one of the Codellama models on Hugging Face (e.g: codellama/CodeLlama-7b-Instruct-hf).
2. Start the OpenAI compatible API (ref: https://github.com/lm-sys/FastChat/blob/main/docs/openai_api.md).
3. Change your Continue config file to look like this:
@@ -81,4 +82,5 @@ config = ContinueConfig(
openai_server_info={'api_base': 'http://localhost:8000/v1'})
```
+
4. Reload the VS Code window for changes to take effect.