summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-12 10:48:03 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-12 10:48:03 -0700
commitaf34f8eae701a875a2a85fca29ffc0d88deb1400 (patch)
treeac7cf09932160fe2eb1613ec37d85ce7376a7365 /docs
parent625c8137cc01ac8a964992f19cecccbcd5b33f84 (diff)
downloadsncontinue-af34f8eae701a875a2a85fca29ffc0d88deb1400.tar.gz
sncontinue-af34f8eae701a875a2a85fca29ffc0d88deb1400.tar.bz2
sncontinue-af34f8eae701a875a2a85fca29ffc0d88deb1400.zip
better chat
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/concepts/sdk.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs/concepts/sdk.md b/docs/docs/concepts/sdk.md
index 30da2e79..21190aa8 100644
--- a/docs/docs/concepts/sdk.md
+++ b/docs/docs/concepts/sdk.md
@@ -23,7 +23,7 @@ The **Continue SDK** gives you all the tools you need to automate software devel
### `sdk.models`
-`sdk.models` is an instance of the `Models` class, containing many of the most commonly used LLMs or other foundation models. You can instantiate a model (starcoder for example) (this is too awkward rn, I know) by calling `starcoder = await sdk.models.starcoder()`. Right now, all of the models are `LLM`s, meaning that they offer the `complete` method, used like `bubble_sort_code = await starcoder.complete("# Write a bubble sort function below, in Python:\n")`.
+`sdk.models` is an instance of the `Models` class, containing many of the most commonly used LLMs or other foundation models. You can access a model (starcoder for example) like `starcoder = sdk.models.starcoder`. Right now, all of the models are `LLM`s, meaning that they offer the `complete` method, used like `bubble_sort_code = await starcoder.complete("# Write a bubble sort function below, in Python:\n")`.
### `sdk.history`