From 4f22a99eb2447dff58e2a08e7565ae7fcea7de1a Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Wed, 10 Sep 2025 22:06:31 -0400 Subject: [PATCH] rename --- src/oss/python/integrations/providers/modelscope.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/oss/python/integrations/providers/modelscope.mdx b/src/oss/python/integrations/providers/modelscope.mdx index 2eb5dda06..28dd98098 100644 --- a/src/oss/python/integrations/providers/modelscope.mdx +++ b/src/oss/python/integrations/providers/modelscope.mdx @@ -48,11 +48,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") ```