Hermes 4 70B is a hybrid reasoning model from Nous Research, built on Meta-Llama-3.1-70B. It introduces the same hybrid mode as the larger 405B release, allowing the model to either...
# Запрос к API VEGA через nousresearch/hermes-4-70b
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "nousresearch/hermes-4-70b",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'