Skip to content

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 Qoder in 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

Open Qoder settings panel

2. Configure Custom Model

In the Add Model panel, fill in the following:

FieldValue
ProviderSelect the OpenAI-compatible custom option
Base URLhttps://open.dieyuyun.com/v1
Model IDgpt-5.5 (or other available model code)
API KeyYour 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.

Configure custom model parameters

3. Save and Enable

After confirming, switch to the newly added model in Qoder's model selector to start using it.

Qoder configuration complete

API Endpoint Reference

Wuliang Open AI OpenAI-compatible endpoint details:

FieldValue
Base URLhttps://open.dieyuyun.com/v1
Auth HeaderAuthorization: Bearer your-api-key
FormatJSON

Example request:

bash
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.