# Alibaba (Tongyi/Qwen) (/docs/providers/alibaba)


Overview [#overview]

[Alibaba Cloud](https://www.alibabacloud.com) offers the Tongyi (Qwen) series of large language models, known for multilingual support and strong reasoning capabilities.

**Official Website:** [https://www.alibabacloud.com](https://www.alibabacloud.com)
&#x2A;*API Documentation:** [https://help.aliyun.com/zh/model-studio/](https://help.aliyun.com/zh/model-studio/)

Key Features [#key-features]

* **Multilingual** — Strong support for Chinese, English, and other languages
* **Reasoning Mode** — Enhanced reasoning capabilities
* **Code Generation** — Specialized coding models
* **Long Context** — Large context windows
* **Vision** — Image understanding

Usage Example [#usage-example]

```python
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 [#available-models]

Use the [Models API](/docs/models-api) to query available models:

```bash
curl https://api.yuhuanstudio.com/v1/models?provider=alibaba \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<Callout type="info">
  Models and pricing are synced automatically. Check the dashboard for current availability and rates.
</Callout>

Official Resources [#official-resources]

* [Alibaba Cloud](https://www.alibabacloud.com)
* [Model Studio](https://help.aliyun.com/zh/model-studio/)
* [Qwen GitHub](https://github.com/QwenLM/Qwen)
