diff options
-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") ) ) ``` |