ExoMind

ExoMind-9B

A compact checkpoint from ExoMind: Democratizing Scientific Intelligence via Extended-Mind-Inspired Agentic System

ExoMind Team · Shanghai Artificial Intelligence Laboratory

Project Page Technical Report PDF

Hugging Face GitHub ModelScope

🔥 News

  • 2026-08-12: 🔥 We release the ExoMind technical report, official project page, and public repository.

Overview

ExoMind-9B is the compact ExoMind checkpoint, fine-tuned from Qwen3.5-9B for lower-resource experimentation in scientific reasoning and agentic research. It follows the same extended-mind-inspired approach, organizing the model, specialized interaction objects, and autonomous interaction processes as one system.

Highlights

  • Compact scientific checkpoint: supports resource-conscious experiments with the ExoMind reasoning and interaction paradigm.
  • Scientific interaction: works with source discovery, evidence grounding, executable verification, and observation integration workflows.
  • Progressive CoI training: develops intrinsic reasoning and interaction behavior from selected pure-reasoning and interaction trajectories.
  • Multimodal foundation: retains the image-text capabilities of its Qwen3.5 base model.

Quick Start

Use a recent vLLM or SGLang release with Qwen3.5 support. The examples below use the checkpoint's configured maximum context length of 262,144 tokens.

vLLM

vllm serve AI4SGI/ExoMind-9B \
  --port 8000 \
  --tensor-parallel-size 1 \
  --max-model-len 262144 \
  --reasoning-parser qwen3 \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder

SGLang

python -m sglang.launch_server \
  --model-path AI4SGI/ExoMind-9B \
  --host 0.0.0.0 \
  --port 8000 \
  --tp-size 1 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

OpenAI-Compatible API

from openai import OpenAI

client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
response = client.chat.completions.create(
    model="AI4SGI/ExoMind-9B",
    messages=[
        {
            "role": "user",
            "content": "Develop a testable hypothesis and a rigorous verification plan for: ...",
        }
    ],
    temperature=1.0,
    top_p=0.95,
    extra_body={"top_k": 20},
)
print(response.choices[0].message.content)

Evaluation

The table below reports the main ExoMind 35B-A3B system. ExoMind-9B is provided as a compact checkpoint and has not been assigned these scores.

🥇 Best score among the representative models shown

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/ tools50.9🥇 57.952.251.456.053.554.748.2
FrontierScience-Research🥇 70.026.726.711.721.710.015.013.3
CMT-Benchmark🥇 84.046.043.043.034.034.020.028.0
CritPt25.720.9🥇 27.117.723.413.420.97.1
🧠 Scientific Reasoning
AMO-Bench🥇 78.074.070.063.164.057.454.068.0
IMO-AnswerBench🥇 92.886.883.890.082.890.091.089.8
HiPhO🥇 49.746.443.343.442.438.837.438.7
FrontierScience-Olympiad🥇 89.075.078.077.069.080.076.576.0
Eight-benchmark average🥇 67.554.253.049.749.247.146.246.1

Complete settings and comparisons are available in the evaluation explorer.

Intended Use

ExoMind-9B is intended for scientific question answering, mathematical and computational reasoning, tool-use experiments, code-assisted verification, and resource-conscious agentic prototypes.

License and Attribution

The distributed checkpoint and upstream Qwen3.5 materials are provided under the Apache License 2.0 included in this repository. The technical report, scientific figures and results, and ExoMind brand assets are subject to the ExoMind Research Content and Brand Terms. See NOTICE.md for third-party notices.

Citation

@misc{exomind2026,
  title  = {ExoMind: Democratizing Scientific Intelligence via Extended-Mind-Inspired Agentic System},
  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},
  year   = {2026},
  note   = {Technical report},
  url    = {https://github.com/AI4SGI/ExoMind/blob/main/Paper.pdf}
}
Downloads last month
8
Safetensors
Model size
9B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for AI4SGI/ExoMind-9B

Finetuned
Qwen/Qwen3.5-9B
Finetuned
(629)
this model