2026-08-12: We release the 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. 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 68.3, 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.
1from openai import OpenAI
23client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")4response = client.chat.completions.create(5 model="AI4SGI/ExoMind",6 messages=[7{8"role":"user",9"content":"Develop and verify a rigorous solution to this scientific problem: ...",10}11],12 temperature=1.0,13 top_p=0.95,14 extra_body={"top_k":20},15)16print(response.choices[0].message.content)
The complete scientific interaction workflow and prompt contracts are available
in the ExoMind GitHub repository.
Evaluation
Under the preprint's evaluation setup, ExoMind reaches an
eight-benchmark average of 68.3, compared with 54.2 for the next-best
representative model shown below.
🥇 Best score among the representative models shown
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 preprint,
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
bibtex
1@article{Ye_2026,
2 title = {ExoMind: Democratizing Scientific Intelligence via Extended-Mind-Inspired Agentic System},
3 author = {Ye, Peng and Liu, Zhuo and Ye, Jingqi and Yu, Fangchen and Tang, Shengji and Jiang, Yichen and He, Haonan and Cao, Zongsheng and Chen, Tao and Zhang, Bo and Ouyang, Wanli and Zhou, Bowen and Bai, Lei},
4 year = {2026},
5 month = aug,
6 publisher = {MDPI AG},
7 doi = {10.20944/preprints202608.2038.v1},
8 url = {https://doi.org/10.20944/preprints202608.2038.v1}
9}