CoolFace
Modelpublic

NextTokenAI/NextSearch-1-M

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes64downloads
Model Card

NextSearch-1-M

NextSearch-1-M is the largest of the three NextSearch-1 web research agents: post-trained models that decompose a question, search and fetch from the live web, reconcile conflicting evidence, and return a concise answer or a structured research artifact. They are built to work as the research component inside a larger system — called repeatedly by an orchestrator — where per-call accuracy, tail latency, and cost compound.

ModelBaseParams
NextSearch-1-M (this repo)Inkling-Small276B-A12B MoEweights
NextSearch-1-SQwen3.6-35B-A3B35B-A3B MoEweights
NextSearch-1-XSQwen3.5-9B9B denseweights

Technical report: [nexttoken.co/research/nextsearch-1](https://nexttoken.co/research/nextsearch-1). Harness, evaluation suite, and audited benchmark golds: [github.com/NextTokenAI/nextsearch](https://github.com/NextTokenAI/nextsearch).

Results

Live-web evaluation (August 2026), 12B-active M against frontier API anchors. Benchmarks: SEAL-0 (fresh/conflicting evidence, n=97), FRAMES (multi-constraint retrieval, n=100), DeepSearchQA (comprehensive answer sets, n=100), WideSearch-sub (structured table sub-tasks, n=49), and WideSearch (full tasks under the orchestrated harness, n=20). Best per column in bold.

SEAL-0FRAMESDeepSearchQAWideSearch-subWideSearchmean $/epmean turns
NextSearch-1-M0.5150.8500.8030.8050.708$0.0745.9
glm-5.2 (355B-A32B)0.5050.9200.7900.8560.806$0.0157.5
gemini-3.6-flash0.4950.8800.7730.8850.712$0.1278.8
gpt-5.6-luna-med0.4840.8200.7880.7630.742$0.0106.9
deepseek-v4-flash0.4740.8200.7810.6820.758$0.02910.1
nemotron-3-ultra (550B-A55B)0.4230.8500.6930.760$0.0839.3

All rows run under our harness (same tools, prompts, turn budgets, pinned task date) against audited golds with one shared judge — consistent within this table, not comparable to other papers' leaderboards. Protocol, costs, and reproduction: docs/evals.md; full analysis in the technical report.

Quick start

The weights are ~530 GB bf16 — plan for a multi-GPU node (e.g. 8×H200). See the vLLM recipe for Inkling for current serving flags; our serving notes (sampling, context caps, tool-call parsing pitfalls) are in docs/serving.md.

bash
vllm serve NextTokenAI/NextSearch-1-M --tensor-parallel-size 8 \
  --enable-auto-tool-choice --max-model-len 65536

Recommended sampling: temperature 0.7, max 16k tokens per turn, reasoning effort 0.7. The model expects a task date in its system prompt and two tools (search, fetch); the exact prompts and tool schemas it was tuned for ship in the harness:

bash
pip install nextsearch && nextsearch-eval run --benches seal0 --models nextsearch-1-m --n 10

License

Released under the Apache License 2.0, as is the base model `thinkingmachines/Inkling-Small`.

Citation

bibtex
@techreport{nextsearch1,
  title       = {NextSearch-1: Open models for wide and deep web research},
  author      = {Nitish Kulkarni and Alankar Jain},
  institution = {NextToken},
  year        = {2026},
  url         = {https://nexttoken.co/research/nextsearch-1}
}