Support downloading models from ModelScope Community. (#5073)

This PR supports downloading models from ModelScope. The main
modifications are as follows:
-New Feature (non-breaking change which adds functionality)
-Documentation Update

---------

Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
yrk111222
2025-02-24 10:12:20 +08:00
committed by GitHub
parent 217caecfda
commit 7ce675030b
9 changed files with 30 additions and 3 deletions

View File

@ -85,6 +85,7 @@ from .chat_model import (
GoogleChat,
HuggingFaceChat,
GPUStackChat,
ModelScopeChat,
)
from .cv_model import (
@ -231,6 +232,7 @@ ChatModel = {
"Google Cloud": GoogleChat,
"HuggingFace": HuggingFaceChat,
"GPUStack": GPUStackChat,
"ModelScope":ModelScopeChat,
}
RerankModel = {