Image-Text-to-Text
Transformers
Safetensors
English
Chinese
qwen3_5_moe
exomind
scientific-reasoning
scientific-research
agentic
tool-use
multimodal
vision-language
qwen3.5
conversational
Instructions to use AI4SGI/ExoMind with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AI4SGI/ExoMind with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="AI4SGI/ExoMind") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("AI4SGI/ExoMind") model = AutoModelForMultimodalLM.from_pretrained("AI4SGI/ExoMind", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AI4SGI/ExoMind with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AI4SGI/ExoMind" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AI4SGI/ExoMind", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/AI4SGI/ExoMind
- SGLang
How to use AI4SGI/ExoMind with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "AI4SGI/ExoMind" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AI4SGI/ExoMind", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "AI4SGI/ExoMind" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AI4SGI/ExoMind", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use AI4SGI/ExoMind with Docker Model Runner:
docker model run hf.co/AI4SGI/ExoMind
File size: 9,565 Bytes
0bab05a 6333681 0bab05a 6333681 0bab05a 6333681 2daba46 6333681 e8c8e29 6333681 e8c8e29 6333681 2daba46 6333681 e8c8e29 6333681 2daba46 6333681 2daba46 b29a6f9 6333681 2daba46 6333681 b29a6f9 6333681 2daba46 b29a6f9 2daba46 6333681 2daba46 6333681 2daba46 6333681 427521d 6333681 427521d 2daba46 6333681 2daba46 6333681 2daba46 6333681 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | ---
library_name: transformers
license: apache-2.0
base_model: Qwen/Qwen3.5-35B-A3B
base_model_relation: finetune
pipeline_tag: image-text-to-text
language:
- en
- zh
tags:
- exomind
- scientific-reasoning
- scientific-research
- agentic
- tool-use
- multimodal
- vision-language
- qwen3.5
- safetensors
---
<div align="center">
<img src="./assets/ExoMind.png" alt="ExoMind" width="560">
# ExoMind: Democratizing Scientific Intelligence via Extended-Mind-Inspired Agentic System
**ExoMind Team · Shanghai Artificial Intelligence Laboratory**
<p>
<a href="https://ai4sgi.github.io/ExoMind/">
<img src="https://img.shields.io/badge/Project_Page-Visit-174F87?style=for-the-badge&logo=googlechrome&logoColor=white" alt="Project Page">
</a>
<a href="https://github.com/AI4SGI/ExoMind/blob/main/Paper.pdf">
<img src="https://img.shields.io/badge/Technical_Report-PDF-B31B1B?style=for-the-badge&logo=adobeacrobatreader&logoColor=white" alt="Technical Report PDF">
</a>
</p>
<p>
<a href="https://huggingface.co/AI4SGI/ExoMind#exomind-democratizing-scientific-intelligence-via-extended-mind-inspired-agentic-system">
<img src="https://img.shields.io/badge/Hugging_Face-Model-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000000" alt="Hugging Face">
</a>
<a href="https://github.com/AI4SGI/ExoMind">
<img src="https://img.shields.io/badge/GitHub-Code-181717?style=for-the-badge&logo=github&logoColor=white" alt="GitHub">
</a>
<a href="https://modelscope.cn/models/AI4SGI/ExoMind">
<img src="https://img.shields.io/badge/ModelScope-Model-624AFF?style=for-the-badge" alt="ModelScope">
</a>
</p>
</div>
## 🔥 News
- **2026-08-12**: 🔥 We release the ExoMind technical report, official project page,
and public repository.
## Overview
ExoMind is the first extended-mind-inspired agentic system designed for
scientific reasoning and research. It organizes a general-purpose model,
specialized interaction objects, and autonomous interaction processes as one
system, allowing the model to discover sources, ground evidence, execute
verification, and update its reasoning around each scientific problem.
This repository hosts the main checkpoint, fine-tuned from
[Qwen3.5-35B-A3B](https://huggingface.co/Qwen/Qwen3.5-35B-A3B). With
training-value-aware data engineering, a scientific interaction framework, and
two-stage progressive Chain-of-Interaction training, ExoMind raises the average
score across eight scientific benchmarks from **36.2 to 67.5**, achieves the
highest average among all evaluated models, and ranks first on six benchmarks.
## Highlights
- **Extended-mind-inspired intelligence:** unifies the LLM, interaction
objects, and autonomous interaction processes as a scientific agentic system.
- **Training-value-aware data engineering:** identifies challenging, learnable
problems and routes them to pure-reasoning or interaction-reasoning data.
- **Scientific interaction:** turns source discovery, evidence grounding,
executable verification, and observation integration into composable objects.
- **Progressive CoI training:** jointly develops intrinsic reasoning and
autonomous interaction using a few thousand high-quality trajectories.
- **Efficient frontier performance:** completes two-stage full-parameter SFT in
1–2 days on 8 NVIDIA H200 GPUs while improving all six evaluated general
capability benchmarks over the base model.
<p align="center">
<a href="https://ai4sgi.github.io/ExoMind/#performance">
<img src="./assets/fig1-benchmark.png" alt="ExoMind scientific intelligence evaluation" width="100%">
</a>
</p>
## 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
```bash
vllm serve AI4SGI/ExoMind \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3 \
--enable-auto-tool-choice \
--tool-call-parser qwen3_coder
```
### SGLang
```bash
python -m sglang.launch_server \
--model-path AI4SGI/ExoMind \
--host 0.0.0.0 \
--port 8000 \
--tp-size 8 \
--context-length 262144 \
--reasoning-parser qwen3 \
--tool-call-parser qwen3_coder
```
### OpenAI-Compatible API
```python
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
response = client.chat.completions.create(
model="AI4SGI/ExoMind",
messages=[
{
"role": "user",
"content": "Develop and verify a rigorous solution to this scientific problem: ...",
}
],
temperature=1.0,
top_p=0.95,
extra_body={"top_k": 20},
)
print(response.choices[0].message.content)
```
The complete scientific interaction workflow and prompt contracts are available
in the [ExoMind GitHub repository](https://github.com/AI4SGI/ExoMind).
## Evaluation
Under the technical report's evaluation setup, ExoMind reaches an
eight-benchmark average of **67.5**, compared with **54.2** for the next-best
representative model shown below.
<p>
🥇 Best score among the representative models shown
</p>
<table>
<thead>
<tr>
<th rowspan="2" align="left">Benchmark</th>
<th align="center">⭐ Ours</th>
<th colspan="7" align="center">Representative frontier models</th>
</tr>
<tr>
<th align="center">ExoMind<br>35B-A3B</th>
<th align="center">Claude-Opus-4.8<br>Thinking</th>
<th align="center">GPT-5.5<br>(xhigh)</th>
<th align="center">Gemini-3.1-Pro<br>Preview</th>
<th align="center">Kimi-K3</th>
<th align="center">Qwen3.7-Max</th>
<th align="center">GLM-5.2</th>
<th align="center">DeepSeek-V4-Pro<br>(Max)</th>
</tr>
</thead>
<tbody>
<tr><td colspan="9" align="left"><b>🧪 Scientific Research</b></td></tr>
<tr><td align="left">HLE w/ tools</td><td align="center">50.9</td><td align="center">🥇 57.9</td><td align="center">52.2</td><td align="center">51.4</td><td align="center">56.0</td><td align="center">53.5</td><td align="center">54.7</td><td align="center">48.2</td></tr>
<tr><td align="left">FrontierScience-Research</td><td align="center">🥇 70.0</td><td align="center">26.7</td><td align="center">26.7</td><td align="center">11.7</td><td align="center">21.7</td><td align="center">10.0</td><td align="center">15.0</td><td align="center">13.3</td></tr>
<tr><td align="left">CMT-Benchmark</td><td align="center">🥇 84.0</td><td align="center">46.0</td><td align="center">43.0</td><td align="center">43.0</td><td align="center">34.0</td><td align="center">34.0</td><td align="center">20.0</td><td align="center">28.0</td></tr>
<tr><td align="left">CritPt</td><td align="center">25.7</td><td align="center">20.9</td><td align="center">🥇 27.1</td><td align="center">17.7</td><td align="center">23.4</td><td align="center">13.4</td><td align="center">20.9</td><td align="center">7.1</td></tr>
<tr><td colspan="9" align="left"><b>🧠 Scientific Reasoning</b></td></tr>
<tr><td align="left">AMO-Bench</td><td align="center">🥇 78.0</td><td align="center">74.0</td><td align="center">70.0</td><td align="center">63.1</td><td align="center">64.0</td><td align="center">57.4</td><td align="center">54.0</td><td align="center">68.0</td></tr>
<tr><td align="left">IMO-AnswerBench</td><td align="center">🥇 92.8</td><td align="center">86.8</td><td align="center">83.8</td><td align="center">90.0</td><td align="center">82.8</td><td align="center">90.0</td><td align="center">91.0</td><td align="center">89.8</td></tr>
<tr><td align="left">HiPhO</td><td align="center">🥇 49.7</td><td align="center">46.4</td><td align="center">43.3</td><td align="center">43.4</td><td align="center">42.4</td><td align="center">38.8</td><td align="center">37.4</td><td align="center">38.7</td></tr>
<tr><td align="left">FrontierScience-Olympiad</td><td align="center">🥇 89.0</td><td align="center">75.0</td><td align="center">78.0</td><td align="center">77.0</td><td align="center">69.0</td><td align="center">80.0</td><td align="center">76.5</td><td align="center">76.0</td></tr>
<tr><td align="left"><b>Eight-benchmark average</b></td><td align="center">🥇 67.5</td><td align="center">54.2</td><td align="center">53.0</td><td align="center">49.7</td><td align="center">49.2</td><td align="center">47.1</td><td align="center">46.2</td><td align="center">46.1</td></tr>
</tbody>
</table>
See the [interactive evaluation
explorer](https://ai4sgi.github.io/ExoMind/#results) for the complete model list,
benchmark scopes, settings, and rankings.
## Intended Use
ExoMind is intended for research and development in scientific question
answering, literature-grounded investigation, mathematical and computational
reasoning, code-assisted verification, and agentic scientific workflows.
## 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](./CONTENT_RIGHTS.md). See
[NOTICE.md](./NOTICE.md) for third-party notices.
## Citation
```bibtex
@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}
}
```
|