summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-08-16 09:22:24 -0700
committerGitHub <noreply@github.com>2023-08-16 09:22:24 -0700
commit456a9272f0b06902835641062ff70462d97e2db2 (patch)
treebed57da8f870e2f512567333d50cab58dffb36d7
parent1881be67acf279363bb2a6fbb6a69957436c576c (diff)
downloadsncontinue-456a9272f0b06902835641062ff70462d97e2db2.tar.gz
sncontinue-456a9272f0b06902835641062ff70462d97e2db2.tar.bz2
sncontinue-456a9272f0b06902835641062ff70462d97e2db2.zip
fix import errors in code examples
-rw-r--r--docs/docs/customization.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs/customization.md b/docs/docs/customization.md
index f7244da8..08da3b00 100644
--- a/docs/docs/customization.md
+++ b/docs/docs/customization.md
@@ -103,7 +103,8 @@ config = ContinueConfig(
The Together API is a cloud platform for running large AI models. You can sign up [here](https://api.together.xyz/signup), copy your API key on the initial welcome screen, and then hit the play button on any model from the [Together Models list](https://docs.together.ai/docs/models-inference). Change the config file to look like this:
```python
-from continuedev.src.continuedev.libs.llm.replicate import ReplicateLLM
+from continuedev.src.continuedev.core.sdk import Models
+from continuedev.src.continuedev.libs.llm.together import TogetherLLM
config = ContinueConfig(
...
@@ -121,6 +122,7 @@ config = ContinueConfig(
Replicate is a great option for newly released language models or models that you've deployed through their platform. Sign up for an account [here](https://replicate.ai/), copy your API key, and then select any model from the [Replicate Streaming List](https://replicate.com/collections/streaming-language-models). Change the config file to look like this:
```python
+from continuedev.src.continuedev.core.sdk import Models
from continuedev.src.continuedev.libs.llm.replicate import ReplicateLLM
config = ContinueConfig(