Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-08-14 | 4.4 kB | |
V1.29.0 Release Note source code.tar.gz | 2025-08-14 | 6.8 MB | |
V1.29.0 Release Note source code.zip | 2025-08-14 | 9.0 MB | |
Totals: 3 Items | 15.8 MB | 0 |
English Version
New Features
-
Added support for AIGC model creation interface:
:::shell modelscope create <repo_id> --token <token> --visibility <public/private/internal> --aigc --model_path <model_path> --aigc_type <Checkpoint/LoRA/VAE> --base_model_type <base_model_type>
-
Added support for using ModelScope MCP server. Users can interface with MCP plaza through the following method:
:::python from modelscope.hub.mcp_api import MCPApi server = MCPApi().get_mcp_server('@modelcontextprotocol/fetch') ...
-
Added support for repository creation command:
:::shell modelscope create owner/repo_name --token ms-xxx --repo_type model --visibility private --chinese_name 测试模型1 --license MIT
Bug Fixes
- Fixed some security issues
- Fixed issues where some models could not run on higher Python versions. These models will now throw exceptions directly, guiding users to use lower Python versions
- Added additional trust_remote_code validation for models that need to run external code or use torch.load during loading
中文版本
新功能
-
支持了AIGC模型的创建接口:
:::shell modelscope create <repo_id> --token <token> --visibility <public/private/internal> --aigc --model_path <model_path> --aigc_type <Checkpoint/LoRA/VAE> --base_model_type <base_model_type>
-
增加了对ModelScope MCP server的使用支持,用户可以通过多个接口与MCP广场交互,例如:
:::python from modelscope.hub.mcp_api import MCPApi server = MCPApi().get_mcp_server('@modelcontextprotocol/fetch') ... ... 4. 支持了创建repo的命令:
:::shell modelscope create owner/repo_name --token ms-xxx --repo_type model --visibility private --chinese_name 测试模型1 --license MIT
Bug修复
- 修复了一些安全问题
- 修复了部分模型在高版本python下无法运行的问题,这些模型会直接抛出异常,指引用户使用更低版本的python
- 对部分模型在加载时需要运行外部code或者使用torch.load的情况增加了额外的trust_remote_code判断
What's Changed
- fix pyyaml according to: https://github.com/Anchor0221/CVE-2025-50460 by @tastelikefeet in https://github.com/modelscope/modelscope/pull/1428
- 解决使用
uv tool
的依赖的问题 by @Tian-Jionglu in https://github.com/modelscope/modelscope/pull/1427 - Merge release 1.28 by @hjh0119 in https://github.com/modelscope/modelscope/pull/1401
- ollama template: qwen3-coder, gemma3n, mistral-small3.2, magistral, devstral by @suluyana in https://github.com/modelscope/modelscope/pull/1434
- add ms-agent into dockerfile by @tastelikefeet in https://github.com/modelscope/modelscope/pull/1436
- fix large log in scan cache test by @Yunnglin in https://github.com/modelscope/modelscope/pull/1439
- Fix: add revision arg for upload_file by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1440
- fix bug by @tastelikefeet in https://github.com/modelscope/modelscope/pull/1441
- Feat: add atomic capabilities -
MCPApi
by @Koko-ry in https://github.com/modelscope/modelscope/pull/1426 - Add create repo cli by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1445
- feat: sentence_embedding pipeline by @suluyana in https://github.com/modelscope/modelscope/pull/1435
- Feat: Add AIGC model creation support to create_model by @Koko-ry in https://github.com/modelscope/modelscope/pull/1431
- merge release1.28 by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1448
- fix: TestTinynasDamoyoloTrainerSingleGPU ut by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1449
- fix: fix mcp api ut by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1450
- fix: fix ci by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1452
- fix tensorflow cannot load gpu by @tastelikefeet in https://github.com/modelscope/modelscope/pull/1456
- Update default version of python by @tastelikefeet in https://github.com/modelscope/modelscope/pull/1457
- Add
create
cli warning by @wangxingjun778 in https://github.com/modelscope/modelscope/pull/1458
New Contributors
- @Tian-Jionglu made their first contribution in https://github.com/modelscope/modelscope/pull/1427
Full Changelog: https://github.com/modelscope/modelscope/compare/v1.28.2...v1.29.0