
1vllm serve AI4SGI/ExoMind-9B \
2 --port 8000 \
3 --tensor-parallel-size 1 \
4 --max-model-len 262144 \
5 --reasoning-parser qwen3 \
6 --enable-auto-tool-choice \
7 --tool-call-parser qwen3_coder1python -m sglang.launch_server \
2 --model-path AI4SGI/ExoMind-9B \
3 --host 0.0.0.0 \
4 --port 8000 \
5 --tp-size 1 \
6 --context-length 262144 \
7 --reasoning-parser qwen3 \
8 --tool-call-parser qwen3_coder1from openai import OpenAI
2
3client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
4response = client.chat.completions.create(
5 model="AI4SGI/ExoMind-9B",
6 messages=[
7 {
8 "role": "user",
9 "content": "Develop a testable hypothesis and a rigorous verification plan for: ...",
10 }
11 ],
12 temperature=1.0,
13 top_p=0.95,
14 extra_body={"top_k": 20},
15)
16print(response.choices[0].message.content)| Benchmark | ⭐ Ours | Representative frontier models | ||||||
|---|---|---|---|---|---|---|---|---|
| ExoMind 35B-A3B | Claude-Opus-4.8 Thinking | GPT-5.5 (xhigh) | Gemini-3.1-Pro Preview | Kimi-K3 | Qwen3.7-Max | GLM-5.2 | DeepSeek-V4-Pro (Max) | |
| 🧪 Scientific Research | ||||||||
| HLE w/ tools | 56.8 | 🥇 57.9 | 52.2 | 51.4 | 56.0 | 53.5 | 54.7 | 48.2 |
| FrontierScience-Research | 🥇 70.0 | 26.7 | 26.7 | 11.7 | 21.7 | 10.0 | 15.0 | 13.3 |
| CMT-Benchmark | 🥇 84.0 | 46.0 | 43.0 | 43.0 | 34.0 | 34.0 | 20.0 | 28.0 |
| CritPt | 25.7 | 20.9 | 🥇 27.1 | 17.7 | 23.4 | 13.4 | 20.9 | 7.1 |
| 🧠 Scientific Reasoning | ||||||||
| AMO-Bench | 🥇 78.0 | 74.0 | 70.0 | 63.1 | 64.0 | 57.4 | 54.0 | 68.0 |
| IMO-AnswerBench | 🥇 92.8 | 86.8 | 83.8 | 90.0 | 82.8 | 90.0 | 91.0 | 89.8 |
| HiPhO | 🥇 49.7 | 46.4 | 43.3 | 43.4 | 42.4 | 38.8 | 37.4 | 38.7 |
| FrontierScience-Olympiad | 🥇 89.0 | 75.0 | 78.0 | 77.0 | 69.0 | 80.0 | 76.5 | 76.0 |
| Eight-benchmark average | 🥇 68.3 | 54.2 | 53.0 | 49.7 | 49.2 | 47.1 | 46.2 | 46.1 |
1@misc{exomind2026,
2 title = {ExoMind: Democratizing Scientific Intelligence via Extended-Mind-Inspired Agentic System},
3 author = {Peng Ye and Zhuo Liu and Jingqi Ye and Fangchen Yu and Shengji Tang and Yichen Jiang and Haonan He and Zongsheng Cao and Tao Chen and Bo Zhang and Wanli Ouyang and Bowen Zhou and Lei Bai},
4 year = {2026},
5 note = {Technical report},
6 url = {https://github.com/AI4SGI/ExoMind/blob/main/Paper.pdf}
7}