Qwen3, the latest generation in the Qwen large language model series, features both dense and mixture-of-experts (MoE) architectures to excel in reasoning, multilingual support, and advanced agent tasks. Its unique...
# Запрос к API VEGA через qwen/qwen3-30b-a3b
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "qwen/qwen3-30b-a3b",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'