WizardLM-2 8x22B is Microsoft AI's most advanced Wizard model. It demonstrates highly competitive performance compared to leading proprietary models, and it consistently outperforms all existing state-of-the-art opensource models. It is...
# Запрос к API VEGA через microsoft/wizardlm-2-8x22b
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "microsoft/wizardlm-2-8x22b",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'