Apodex-1.0 is a verification-centric model for deep research. The trained model alone, Apodex-1.0, runs as a standard tool-using ReAct agent. Deployed in our heavy-duty mode — an asynchronous agent team in which sub-agents specialize in retrieval and verification, route their reports through a shared evidence pool, and feed a global verifier that reasons over the assembled evidence graph to produce the final answer — it becomes Apodex-1.0-H.
Under the hood, a high-quality data pipeline and a three-stage post-training recipe (SFT, agentic DPO, RL on long agentic rollouts) substantially raise the deep-research capability of the Qwen3.5 base while preserving its general knowledge, coding, reasoning, and instruction-following capabilities — the recipe is additive on the deep-research axis rather than a trade across axes.
Apodex-1.0-H sets a new state of the art across both open- and closed-source models on deep-research benchmarks. Every claim in the final report it produces is backed by an explicit evidence chain and independently audited by a verification team before delivery.
Verification-centric agent team. Instead of one agent carrying the full cognitive load, an orchestrator dispatches a heavy-duty agent team whose specialized sub-agents explore in parallel, and a global verifier audits the assembled evidence before any answer is committed. This combination delivers outstanding results: in deployment it coordinates up to 150 sub-agents over 15,000 steps in a single task.
Auditable by construction. Every claim in the final answer traces back to a node in the evidence graph and is independently checked before delivery; the report pool records every finding, verdict, and intervention, so conclusions are auditable, retractable, and forkable.
Preserving general capabilities. The deep-research focus does not come at the expense of the base model. Our post-training is designed to preserve rather than override: across general knowledge, mathematics, instruction-following, coding and long-context, Apodex-1.0-mini and Apodex-1.0 track their matched-size Qwen3.5 bases within roughly a point.
2. Evaluation Results
To prevent potential information leakage (e.g., retrieving benchmark answers from public repositories), we block access to relevant benchmark-hosting websites during evaluation.
Apodex-1.0-H sets a new state of the art across open- and closed-source frontier systems on the public deep-research suite, achieving 90.3 on BrowseComp, 84.1 on BrowseComp-ZH, 94.4 on DeepSearchQA, 60.8 on text-only HLE, 46.7 on FrontierScience-Research, 87.4 on FrontierScience-Olympiad, and 74.2 on SuperChem.
Apodex Benchmarks
Per-model breakdown across the open-weight checkpoints:
Model
BrowseComp
BrowseComp-ZH
HLE-Text
DeepSearchQA
Apodex-1.0-mini
71.5
80.6
46.8
82.2
Apodex-1.0-4B-SFT
48.8
63.5
32.9
69.9
Apodex-1.0-2B-SFT
27.9
35.0
18.2
49.9
Apodex-1.0-0.8B-SFT
13.9
10.7
11.2
25.8
3. Quick Start
Apodex follows the Qwen3.5 chat template — tool calls are emitted as <tool_call><function=...><parameter=...></tool_call> and reasoning as .... Launch with the matching parsers so the server returns standard OpenAI-style tool_calls and reasoning_content fields.
3.1 Deployment
We recommend deploying Apodex with the latest SGLang or vLLM for an OpenAI-compatible endpoint.
Apodex is trained for native function calling — tool schemas are passed via the tools= parameter of the chat-completions API and rendered into the prompt by the chat template, so the system prompt itself only needs to set the role and the high-level objective. We recommend the prompt below (this is the prompt used in our internal evaluation runs):
You are Apodex, an AI assistant developed by Apodex AI.
Apodex is the flagship agent of Apodex AI. Rather than a conventional conversational LLM, it is a general-purpose solver designed for mission-critical tasks.
Current time: {today_date}. In this environment you have access to a set of tools you can use to answer the user's question.
You only have access to the tools provided. You can use multiple tools per message, and will receive the results of those tools in the user's next response. You use tools step-by-step to accomplish a given task.
# General Objective
You accomplish a given task iteratively, breaking it down into clear steps and working through them methodically.
Substitute {today_date} with the current date (e.g. 2026-06-01). Do not inline tool descriptions in the system prompt — pass them via tools= so the Qwen3.5 chat template can emit the correct <tool_call><function=...> format and the server-side qwen3_coder parser can recover structured tool_calls for you.
The example below runs Apodex as a tool-using agent against an OpenAI-compatible endpoint (the SGLang / vLLM server launched above). The agent loops — executing the requested tools and feeding results back as role="tool" messages — until the model produces a final answer with no tool calls.
Before running, set the endpoint:
bash
1exportOPENAI_API_KEY="EMPTY"# any non-empty string for local servers2exportBASE_URL="http://localhost:1234/v1"
Click to expand python code example
python
1import json
2import os
3from datetime import date
4from openai import OpenAI
567# -------- 1. Tool implementations --------8defget_weather(location:str, unit:str="celsius")->str:9"""Get current weather information for a city (simulated)."""10 table ={11"London":{"temperature":15,"condition":"sunny","humidity":45},12"New York":{"temperature":20,"condition":"cloudy","humidity":60},13"Tokyo":{"temperature":25,"condition":"rainy","humidity":75},14}15 w =dict(table.get(location,{"temperature":18,"condition":"unknown","humidity":50}))16if unit =="fahrenheit":17 w["temperature"]= w["temperature"]*9/5+3218 w["unit"]="°F"19else:20 w["unit"]="°C"21return json.dumps(w, ensure_ascii=False)222324defcalculate(expression:str)->str:25"""Evaluate a Python-style arithmetic expression."""26try:27return json.dumps({"expression": expression,"result":eval(expression)}, ensure_ascii=False)28except Exception as e:29return json.dumps({"expression": expression,"error":str(e)}, ensure_ascii=False)303132available_tools ={"get_weather": get_weather,"calculate": calculate}333435# -------- 2. Tool schemas (OpenAI function-calling format) --------36tools =[37{38"type":"function",39"function":{40"name":"get_weather",41"description":"Get current weather information for a city.",42"parameters":{43"type":"object",44"properties":{45"location":{"type":"string","description":"City name, e.g. 'London'."},46"unit":{47"type":"string",48"enum":["celsius","fahrenheit"],49"description":"Temperature unit (default: celsius).",50},51},52"required":["location"],53},54},55},56{57"type":"function",58"function":{59"name":"calculate",60"description":"Evaluate a Python-style arithmetic expression.",61"parameters":{62"type":"object",63"properties":{64"expression":{65"type":"string",66"description":"Expression to evaluate, e.g. '(25 + 15) * 3 - 10'.",67},68},69"required":["expression"],70},71},72},73]747576# -------- 3. System prompt --------77SYSTEM_PROMPT =f"""You are Apodex, an AI assistant developed by Apodex AI.
7879Apodex is the flagship agent of Apodex AI. Rather than a conventional conversational LLM, it is a general-purpose solver designed for mission-critical tasks.
8081Current time: {date.today()}. In this environment you have access to a set of tools you can use to answer the user's question.
8283You only have access to the tools provided. You can use multiple tools per message, and will receive the results of those tools in the user's next response. You use tools step-by-step to accomplish a given task.
8485# General Objective
8687You accomplish a given task iteratively, breaking it down into clear steps and working through them methodically."""888990# -------- 4. Agentic loop --------91defrun_agent(user_query:str, model:str="apodex/Apodex-1.0-35B-A3B", max_turns:int=20):92 client = OpenAI(93 api_key=os.environ.get("OPENAI_API_KEY","EMPTY"),94 base_url=os.environ.get("BASE_URL","<http://localhost:1234/v1>"),95)9697 messages =[98{"role":"system","content": SYSTEM_PROMPT},99{"role":"user","content": user_query},100]101print(f"\\n{'='*60}\\nUser: {user_query}\\n{'='*60}\\n")102103for turn inrange(max_turns):104 resp = client.chat.completions.create(105 model=model,106 messages=messages,107 tools=tools,108 parallel_tool_calls=True,109 temperature=1.0,110 top_p=0.95,111 max_tokens=16384,112 extra_body={"repetition_penalty":1.05},113)114 msg = resp.choices[0].message
115116# Optional: print reasoning if the server exposes it (qwen3 reasoning parser)117 reasoning =getattr(msg,"reasoning_content",None)118if reasoning:119print(f"[think] {reasoning.strip()}\\n")120if msg.content:121print(f"[assistant] {msg.content.strip()}\\n")122123 messages.append(msg)124125# No more tool calls -> final answer126ifnot msg.tool_calls:127print(f"💬 Final answer:\\n{msg.content}\\n")128return msg.content
129130# Execute every tool call requested in this turn131for call in msg.tool_calls:132 name = call.function.name
133 args = json.loads(call.function.arguments or"{}")134print(f"🔧 call {name}({args})")135try:136 result = available_toolsname
137except Exception as e:138 result = json.dumps({"error":f"{type(e).__name__}: {e}"}, ensure_ascii=False)139print(f" ↳ {result}\\n")140 messages.append({141"role":"tool",142"tool_call_id": call.id,143"content": result,144})145146print("⚠️ Reached max_turns without a final answer.")147returnNone148149150if __name__ =="__main__":151 run_agent("What's the weather in London in Fahrenheit, and what's (25 + 15) * 3 - 10?")
4. License
Apodex-1.0 is released under Apache 2.0.
5. Citation
If you find this project useful in your research, please consider citing:
@article{apodex2026,
title={Apodex-1.0: A Verification-Centric Agent Team for Discoverative Intelligence},
author={Apodex Team},
year={2026}
}