nousresearch
Nous: Hermes 4 70B
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...
Context
131k tokens
Input / 1M tokens
$0.13
Output / 1M tokens
$0.40
Benchmark
—
Pricing
Input tokens$0.13 per 1M tokens
Output tokens$0.40 per 1M tokens
Technical details
Model IDnousresearch/hermes-4-70b
Context window131k tokens
Input modalitiestext
Output modalitiestext
TokenizerLlama3
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'nousresearch/hermes-4-70b',
messages: [{ role: 'user', content: 'Hello!' }],
})