Qwen-Plus, based on the Qwen2.5 foundation model, is a 131K context model with a balanced performance, speed, and cost combination.
# Запрос к API VEGA через qwen/qwen-plus
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "qwen/qwen-plus",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'