diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-31 10:09:42 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-31 10:09:42 -0700 |
commit | a1ee532206c516865c4320087ea7c3dd29c5f2f1 (patch) | |
tree | b29bc302558ed79fcd509fe093fa211a431b0551 | |
parent | 490d30e11f7f7cee2b6b8ac2dd48c55dacffa36d (diff) | |
download | sncontinue-a1ee532206c516865c4320087ea7c3dd29c5f2f1.tar.gz sncontinue-a1ee532206c516865c4320087ea7c3dd29c5f2f1.tar.bz2 sncontinue-a1ee532206c516865c4320087ea7c3dd29c5f2f1.zip |
docs: :memo: update docs about small/large model roles
-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 06183c4a..60764527 100644 --- a/docs/docs/customization.md +++ b/docs/docs/customization.md @@ -16,7 +16,7 @@ config = ContinueConfig( ) ``` -The `default` model is the one used for most operations, including responding to your messages and editing code. The `medium` model is used for summarization tasks that require less quality. The values of these fields are both of the [`LLM`](https://github.com/continuedev/continue/blob/main/continuedev/src/continuedev/libs/llm/__init__.py) class, which implements methods for retreiving and streaming completions from an LLM. +The `default` model is the one used for most operations, including responding to your messages and editing code. The `medium` model is used for summarization tasks that require less quality. There are also `small` and `large` roles that can be filled, but all will fall back to `default` if not set. The values of these fields must be of the [`LLM`](https://github.com/continuedev/continue/blob/main/continuedev/src/continuedev/libs/llm/__init__.py) class, which implements methods for retrieving and streaming completions from an LLM. Below, we describe the `LLM` classes available in the Continue core library, and how they can be used. |