Qwen2.5 72B is the latest series of Qwen large language models. Qwen2.5 brings the following improvements upon Qwen2: - Significantly more knowledge and has greatly improved capabilities in coding and...
# Запрос к API VEGA через qwen/qwen-2.5-72b-instruct
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "qwen/qwen-2.5-72b-instruct",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'