Connect Qoder
Overview
Qoder is Alibaba Cloud's AI coding assistant that integrates with VS Code, JetBrains IDEs, and other popular development tools. Qoder supports custom OpenAI-compatible API endpoints, allowing you to use Wuliang Open AI as the model backend and access a variety of large language models.
Prerequisites
- Qoder plugin installed (search
Qoderin the VS Code extension marketplace) - An API Key created on the Wuliang Open AI platform
Configuration Steps
1. Open Qoder Settings
In VS Code, access Qoder settings:
- Click the Qoder icon in the left activity bar
- Navigate to Settings → Qoder Settings → Model
- Click Add
2. Configure Custom Model
In the Add Model panel, fill in the following:
| Field | Value |
|---|---|
| Provider | Select the OpenAI-compatible custom option |
| Base URL | https://open.dieyuyun.com/v1 |
| Model ID | gpt-5.5 (or other available model code) |
| API Key | Your Wuliang Open AI API Key |
TIP
If your current Qoder version only supports Alibaba Cloud Bailian as a provider, please upgrade to the latest version to access the custom endpoint feature, or refer to the Qoder official documentation for the OpenAI-compatible configuration method.
3. Save and Enable
After confirming, switch to the newly added model in Qoder's model selector to start using it.
API Endpoint Reference
Wuliang Open AI OpenAI-compatible endpoint details:
| Field | Value |
|---|---|
| Base URL | https://open.dieyuyun.com/v1 |
| Auth Header | Authorization: Bearer your-api-key |
| Format | JSON |
Example request:
curl --request POST 'https://open.dieyuyun.com/v1/chat/completions' \
--header 'Authorization: Bearer your-api-key' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-5.5",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Introduce yourself."}
],
"temperature": 0.7,
"max_tokens": 1024
}'Notes
- Version Requirement: Custom endpoint support requires a recent version of Qoder. Upgrade the plugin if the feature is not available.
- Model Codes: The Model ID must exactly match the codes listed on the Models & Pricing page.
- API Key Security: The API Key is stored in plugin config — avoid using on shared accounts.
Related Docs
- Manage API Keys - Create and configure API Keys
- Models & Pricing - Browse available models and pricing
- API Reference - View the full API documentation