Hermes 4 is a large-scale reasoning model built on Meta-Llama-3.1-405B and released by Nous Research. It introduces a hybrid reasoning mode, where the model can choose to deliberate internally with...
# Запрос к API VEGA через nousresearch/hermes-4-405b
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-405b",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'