How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="PolarSeeker/OpenSeeker-v1-30B-SFT")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM

tokenizer = AutoTokenizer.from_pretrained("PolarSeeker/OpenSeeker-v1-30B-SFT")
model = AutoModelForMultimodalLM.from_pretrained("PolarSeeker/OpenSeeker-v1-30B-SFT")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

OpenSeeker: Democratizing Frontier Search Agents by Fully Open-Sourcing Training Data

Code Paper Model Data

OpenSeeker is an open-source search agent system that democratizes access to frontier search capabilities by fully open-sourcing its training data. We fine-tuned Qwen3-30B-A3B-Thinking-2507 with 11.7K training examples and achieved state-of-the-art performance on frontier search benchmarks:

teaser_benchmarks

Highlights

  • Superior performance on search agent benchmarks: 48.4 on BrowseComp-ZH, 29.5 on BrowseComp, 74.0 on xbench-DeepSearch, and 59.4 on WideSearch.
  • Competitive with industrial models: Surpasses Tongyi DeepResearch on BrowseComp-ZH (48.4% vs. 46.7%), despite Tongyi DeepResearch being trained with extensive continual pre-training, supervised fine-tuning, and reinforcement learning.
  • Fully open-sourced training data: The first work by a purely academic team to achieve state-of-the-art performance while simultaneously open-sourcing the full training data.

Performance

table

For more details, please refer to our GitHub repository. Paper: arXiv:2603.15594

Downloads last month
451
Safetensors
Model size
31B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for PolarSeeker/OpenSeeker-v1-30B-SFT

Finetuned
(39)
this model
Quantizations
2 models

Paper for PolarSeeker/OpenSeeker-v1-30B-SFT