diff --git a/docs/docs/integrations/providers/modelscope.mdx b/docs/docs/integrations/providers/modelscope.mdx index 30c50e33bd58a..cb991e6cb7199 100644 --- a/docs/docs/integrations/providers/modelscope.mdx +++ b/docs/docs/integrations/providers/modelscope.mdx @@ -40,11 +40,11 @@ embeddings.embed_query("What is the meaning of life?") ``` ## LLMs -`ModelScopeLLM` class exposes LLMs from ModelScope. +`ModelScopeEndpoint` class exposes LLMs from ModelScope. ```python -from langchain_modelscope import ModelScopeLLM +from langchain_modelscope import ModelScopeEndpoint -llm = ModelScopeLLM(model="Qwen/Qwen2.5-Coder-32B-Instruct") +llm = ModelScopeEndpoint(model="Qwen/Qwen2.5-Coder-32B-Instruct") llm.invoke("The meaning of life is") ```