Views
No views yet

<think>…</think> segments when the model decides to deliberate, and options to make your responses faster when you want.| Model | % of Questions Answered |
|---|---|
| Hermes 4.3 36B Non-Reasoning | 74.60% |
| Hermes 4.3 36B Reasoning | 72.29% |
| Hermes 4 70B Reasoning | 59.50% |
| Hermes 4 405B Reasoning | 57.10% |
| grok4 | 51.30% |
| Hermes 4 70B | 49.07% |
| Hermes 4 405B | 43.20% |
| Qwen2.5 7B | 36.10% |
| Qwen3 235B Reasoning | 34.30% |
| DeepSeek V3 | 28.10% |
| Gemini 2.5 Pro | 24.23% |
| Llama 405B | 21.70% |
| Gemini 2.5 Flash | 19.13% |
| GPT4o | 17.67% |
| Sonnet 4 | 17.00% |
| GPT4-mini | 16.76% |
| R1 | 16.70% |
| cogito-v2-405B Reasoning | 15.40% |
| Opus 4.1 | 15.38% |
| Qwen3 235B | 15.30% |
| cogito-v2-405B | 14.94% |
| cogito-v2-405B | 12.10% |
| GPT 5 | 11.34% |
| gpt-oss 120B | 5.60% |
| gpt-oss 20B | 4.79% |
| Hermes 4.3 36B Psyche | Hermes 4.3 36B Centralized | Hermes 4 70B Centralized | |
|---|---|---|---|
| AIME 24 | 71.9 | 70.6 | 73.5 |
| AIME 25 | 69.3 | 66.8 | 67.4 |
| BBH | 86.4 | 84.7 | 87.8 |
| DROP | 83.5 | 81.6 | 85.0 |
| GPQA Diamond | 65.5 | 64.8 | 66.1 |
| IFEval | 77.9 | 73.9 | 78.7 |
| MATH-500 | 93.8 | 92.3 | 95.5 |
| MMLU | 87.7 | 86.5 | 88.4 |
| MMLU-Pro | 80.7 | 79.7 | 80.7 |
| MuSR | 69.7 | 64.7 | 70.4 |
| OBQA | 96.6 | 91.8 | 94.8 |
| SimpleQA | 6.0 | 5.6 | 17.9 |
<|start_header_id|>system<|end_header_id|>
You are Hermes 4. Be concise and helpful.<|eot_id|>
<|start_header_id|>user<|end_header_id|>
Explain the photoelectric effect simply.<|eot_id|>
<|start_header_id|>assistant<|end_header_id|>thinking=True or by using the following system prompt:You are a deep thinking AI, you may use extremely long chains of thought to deeply consider the problem and deliberate with yourself via systematic reasoning processes to help come to a correct solution prior to answering. You should enclose your thoughts and internal monologue inside <think> </think> tags, and then provide your solution or response to the problem.<|start_header_id|>assistant<|end_header_id|>
<think>
…model’s internal reasoning may appear here…
</think>
Final response starts here…<|eot_id|><think> ... </think> that you can play with by setting keep_cots=True<|start_header_id|>system<|end_header_id|>
You are a function-calling AI. Tools are provided inside <tools>…</tools>.
When appropriate, call a tool by emitting a <tool_call>{...}</tool_call> object.
After a tool responds (as <tool_response>), continue reasoning inside <think> and produce the final answer.
<tools>
{"type":"function","function":{"name":"get_weather","description":"Get weather by city","parameters":{"type":"object","properties":{"city":{"type":"string"}},"required":["city"]}}}
</tools><|eot_id|><tool_call> {tool_call} </tool_call> tags, for easy parsing. The tool_call tags are also added tokens, so it makes it easy to parse while streaming! There are also automatic tool parsers built-in to VLLM and SGLang for Hermes, just set the tool parser in VLLM to hermes and in SGLang to qwen25.temperature=0.6, top_p=0.95, top_k=20.add_generation_prompt=True when using tokenizer.apply_chat_template(...).1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_id = "NousResearch/Hermes-4.3-36B"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.float16,
10 device_map="auto"
11)
12
13messages = [
14 {"role":"system","content":"You are Hermes 4. Be concise."},
15 {"role":"user","content":"Summarize CRISPR in 3 sentences."}
16]
17
18inputs = tokenizer.apply_chat_template(
19 messages, add_generation_prompt=True, return_tensors="pt"
20).to(model.device)
21
22outputs = model.generate(
23 **inputs, max_new_tokens=400, temperature=0.6, top_p=0.95, top_k=20, do_sample=True
24)
25print(tokenizer.decode(outputs[0], skip_special_tokens=True))1@misc{teknium2025hermes4technicalreport,
2 title={Hermes 4 Technical Report},
3 author={Ryan Teknium and Roger Jin and Jai Suphavadeeprasit and Dakota Mahan and Jeffrey Quesnelle and Joe Li and Chen Guang and Shannon Sands and Karan Malhotra},
4 year={2025},
5 eprint={2508.18255},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2508.18255},
9}