ModelScope
Alibaba's open-source model community for Chinese AI models.
Overview
ModelScope is Alibaba's open-source model community, providing access to leading Chinese AI models and multimodal capabilities.
Official Website: https://modelscope.cn
Key Features
- Chinese Excellence — Superior performance on Chinese language tasks
- Multimodal — Vision, audio, and cross-modal understanding
- Free Tier — Generous free tier for development
- Open Source — Access to model weights for local deployment
Usage Example
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.yuhuanstudio.com/v1"
)
response = client.chat.completions.create(
model="model-id",
messages=[{"role": "user", "content": "你好!"}]
)
print(response.choices[0].message.content)Available Models
Use the Models API to query available models:
curl https://api.yuhuanstudio.com/v1/models?provider=modelscope \
-H "Authorization: Bearer YOUR_API_KEY"Models and pricing are synced automatically. Check the dashboard for current availability and rates.
Official Resources
How is this guide?