A 12B parameter model with a 128k token context length built by Mistral in collaboration with NVIDIA. The model is multilingual, supporting English, French, German, Spanish, Italian, Portuguese, Chinese, Japanese,...
# Запрос к API VEGA через mistralai/mistral-nemo
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "mistralai/mistral-nemo",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'