diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-03 01:53:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 01:53:54 -0700 |
commit | 0c14605421e9c05fb57c7fda5b62d4354a207aba (patch) | |
tree | 7d8704b1632251c209a92176bdd02809ed29fbd4 /docs | |
parent | 089def08c58120f78df78c10027639802ad8f77d (diff) | |
download | sncontinue-0c14605421e9c05fb57c7fda5b62d4354a207aba.tar.gz sncontinue-0c14605421e9c05fb57c7fda5b62d4354a207aba.tar.bz2 sncontinue-0c14605421e9c05fb57c7fda5b62d4354a207aba.zip |
Update customization.md [skip ci]
Anthropic -> AnthropicLLM
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/customization.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/customization.md b/docs/docs/customization.md index a09c4ac5..8b3a87d6 100644 --- a/docs/docs/customization.md +++ b/docs/docs/customization.md @@ -38,15 +38,15 @@ These classes support any models available through the OpenAI API, assuming your ### claude-2 -Import the `Anthropic` LLM class and set it as the default model: +Import the `AnthropicLLM` LLM class and set it as the default model: ```python -from continuedev.libs.llm.anthropic import Anthropic +from continuedev.libs.llm.anthropic import AnthropicLLM config = ContinueConfig( ... models=Models( - default=Anthropic(model="claude-2") + default=AnthropicLLM(model="claude-2") ) ) ``` |