Download the PHP package arfaram/connector-qwen without Composer
On this page you can find all versions of the php package arfaram/connector-qwen. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package connector-qwen
connector-qwen
Qwen (Alibaba Cloud) AI connector for Ibexa DXP.
This bundle integrates the Qwen AI models via Alibaba Cloud's DashScope API (OpenAI-compatible) with the Ibexa AI framework (ibexa/connector-ai). It uses the openai-php/client SDK with a custom base URL, so there is no need for a hand-rolled HTTP client.
Requirements
- PHP >= 8.3
- Ibexa DXP ~5.0
ibexa/connector-ai~5.0- Alibaba Cloud DashScope API key (get one at Model Studio Console)
Installation
Require the package:
Register the bundle in config/bundles.php:
Environment Variable
Set your DashScope API key in .env:
⚠️ This must be a DashScope API key (starts with
sk-), NOT an Alibaba Cloud AccessKey ID/Secret pair.To get your DashScope API key:
- International: Go to Model Studio Console, navigate to API Keys
- China region: Go to DashScope Console → API Keys
⚠️ You must also activate each model you want to use in the Model Studio console under Model Square / Model Plaza.
Region Configuration
The bundle defaults to the international DashScope endpoint. If you're using the China region, override per SiteAccess:
| Region | Base URI |
|---|---|
| International (default) | https://dashscope-intl.aliyuncs.com/compatible-mode/v1 |
| China | https://dashscope.aliyuncs.com/compatible-mode/v1 |
Configuration
Available Qwen Models
⚠️ Retired models (do not use):
qwen-max,qwen-plus,qwen-turbo,qwen2.5-*series are deprecated.
Text Models
| Model ID | Description |
|---|---|
qwen3.6-plus |
Qwen 3.6 Plus, most capable (latest) |
qwen3.6-plus-2026-04-02 |
Qwen 3.6 Plus pinned to 2026-04-02 |
qwen3.6-flash |
Qwen 3.6 Flash, fast & balanced (latest) |
qwen3.6-flash-2026-04-16 |
Qwen 3.6 Flash pinned to 2026-04-16 |
qwen3.5-plus |
Qwen 3.5 Plus (latest) |
qwen3.5-flash |
Qwen 3.5 Flash (latest) |
qwen3-max |
Qwen 3 Max (latest) |
qwen3.6-35b-a3b |
Qwen 3.6 Open Source (35B-A3B) |
qwen3.5-35b-a3b |
Qwen 3.5 Open Source (35B-A3B) |
qwen-long |
Qwen Long, long context |
Vision Models (Image-to-Text)
| Model ID | Description |
|---|---|
qwen3-vl-plus |
Qwen 3 VL Plus, dedicated vision |
qwen3-vl-plus-2025-09-23 |
Qwen 3 VL Plus pinned to 2025-09-23 |
qwen3.6-plus |
Qwen 3.6 Plus, multimodal capable (latest) |
qwen3.6-flash |
Qwen 3.6 Flash, multimodal capable (latest) |
qwen3.5-plus |
Qwen 3.5 Plus, multimodal capable (latest) |
qwen3.5-flash |
Qwen 3.5 Flash, multimodal capable (latest) |
qwen3.6-35b-a3b |
Qwen 3.6 Open Source vision |
qwen3.5-35b-a3b |
Qwen 3.5 Open Source vision |
Basic Configuration
Create config/packages/ibexa_connector_qwen.yaml:
SiteAccess-Aware API Key Configuration
Minimal Configuration (uses defaults)
All other values will use their defaults:
default_temperature:1.0default_max_tokens:4000models: all current Qwen models as defined in the Configuration class
Production-Optimized Configuration
Use dated model versions in production for deterministic, reproducible results:
License
MIT - See LICENSE for details.
Author
Ramzi Arfaoui - [email protected]
All versions of connector-qwen with dependencies
openai-php/client Version ^0.10
ibexa/connector-ai Version ~5.0
ibexa/core Version ~5.0
symfony/config Version ^7.3
symfony/dependency-injection Version ^7.3
symfony/http-kernel Version ^7.3
symfony/yaml Version ^7.3