Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
I

IQuest-Coder-V1

> 编程语言
Open source

<p align="center" <a href="https://iquestlab.github.io"Blog (2026-01-01)</a &nbsp;•&nbsp; <a href="https://iquestlab.github.io/release-1.0-…

1.4K stars0 likes0 views
WebsiteGitHub

About

<p align="center" <a href="https://iquestlab.github.io"Blog (2026-01-01)</a &nbsp;•&nbsp; <a href="https://iquestlab.github.io/release-1.0-…

Blog (2026-01-01)  •  Blog (2026-03-02)  •  Technical Report

IQuest-Coder-V1 Model Family Update

IQuest-Coder-V1 Model Family Update: Released 7B & 14B Family Models, 40B-Thinking and 40B-Loop-Thinking, specially optimized for tool use, CLI agents (Like Claude Code and OpenCode) & HTML/SVG generation, all with 128K context, now on Hugging Face!

7B Models

Model Link
IQuest-Coder-V1-7B-Base-Stage1 Hugging Face
IQuest-Coder-V1-7B-Base Hugging Face
IQuest-Coder-V1-7B-Instruct Hugging Face
IQuest-Coder-V1-7B-Thinking Hugging Face

14B Models

Model Link
IQuest-Coder-V1-14B-Base-Stage1 Hugging Face
IQuest-Coder-V1-14B-Base Hugging Face
IQuest-Coder-V1-14B-Instruct Hugging Face
IQuest-Coder-V1-14B-Thinking Hugging Face

40B Models

Model Link
IQuest-Coder-V1-40B-Base-Stage1 Hugging Face
IQuest-Coder-V1-40B-Base Hugging Face
IQuest-Coder-V1-40B-Instruct Hugging Face
IQuest-Coder-V1-40B-Loop-Instruct Hugging Face
IQuest-Coder-V1-40B-Thinking Hugging Face
IQuest-Coder-V1-40B-Loop-Thinking Hugging Face

Sampling Parameters:

For the IQuest-Coder-V1-Instruct: We suggest using Temperature=0.6, TopP=0.85, TopK=20.

For the IQuest-Coder-V1-Thinking: We suggest using Temperature=1.0, TopP=0.95, TopK=20.

IQuest-Coder-V1 Highlights

IQuest-Coder-V1 is a new family of code large language models (LLMs) designed to advance autonomous software engineering and code intelligence. Built on the innovative code-flow multi-stage training paradigm, IQuest-Coder-V1 captures the dynamic evolution of software logic, delivering state-of-the-art performance across critical dimensions:

  • Performance: Achieves leading results on SWE-Bench Verified (76.2%), BigCodeBench (49.9%), LiveCodeBench v6 (81.1%), and other major coding benchmarks, surpassing competitive models across agentic software engineering, competitive programming, and complex tool use.
  • Code-Flow Training Paradigm: Moving beyond static code representations, our models learn from repository evolution patterns, commit transitions, and dynamic code transformations to understand real-world software development processes.
  • Dual Specialization Paths: Bifurcated post-training delivers two specialized variants—Thinking models (utilizing reasoning-driven RL for complex problem-solving) and Instruct models (optimized for general coding assistance and instruction-following).
  • Efficient Architecture: The IQuest-Coder-V1-Loop variant introduces a recurrent mechanism that optimizes the trade-off between model capacity and deployment footprint. The 7B and 14B models adopt shallow architectures for faster inference speed.
  • Native Long Context: All models natively support up to 128K tokens without requiring additional scaling techniques.
  • CLI Agent Integration: Demonstrates initial deployment capabilities on ClaudeCode and OpenCode platforms, with the ability to integrate into CLI-based agent workflows.
  • HTML and SVG Generation: Features preliminary support for HTML and SVG code generation.
  • Architectural Chain-of-Thought via Recurrent Depth: 40B-Loop-Thinking is a research-oriented, experimental model prototype designed to explore how structural chains of thought and procedural chains of thought can be combined within a single system. The model uniquely integrates structural chains of thought—realized through loop-based computation enabled by the dual-iteration LoopCoder architecture—with procedural chains of thought derived from explicit reasoning trajectories trained via reinforcement learning. Unlike standard reasoning models that rely solely on token-level chain-of-thought expansion, Loop-Thinking introduces implicit multi-step computation at the architectural level through a looped Transformer design. In this design, the second iteration refines the hidden states produced by the first iteration using a global–local attention gating mechanism. This results in a nested reasoning mechanism: the loop structure supports iterative representation refinement, while the reasoning-oriented training paradigm injects explicit problem decomposition behavior. It is important to note that this model is not intended to achieve state-of-the-art performance across benchmarks, but rather to validate the complementary roles of loop-based computation and reasoning-oriented training in shaping reasoning structures, and to provide experimental evidence for future model design.

Model Overview

The IQuest-Coder-V1 series includes models ranging from 7B to 40B parameters, with both standard and Loop variants:

Model Parameters Layers Hidden Size Attention Heads (Q/KV) Context Length
IQuest-Coder-V1-7B-Instruct 7B 14 5120 40/8 128K
IQuest-Coder-V1-7B-Thinking 7B 14 5120 40/8 128K
IQuest-Coder-V1-14B-Instruct 14B 28 5120 40/8 128K
IQuest-Coder-V1-14B-Thinking 14B 28 5120 40/8 128K
IQuest-Coder-V1-40B-Instruct 40B 80 5120 40/8 128K
IQuest-Coder-V1-40B-Thinking 40B 80 5120 40/8 128K
IQuest-Coder-V1-40B-Loop-Instruct 40B 80 (2 iterations) 5120 40/8 128K
IQuest-Coder-V1-40B-Loop-Thinking 40B 80 (2 iterations) 5120 40/8 128K

Architecture Features:

  • Grouped Query Attention (GQA) for efficient inference
  • Native 128K context length support
  • Vocabulary size: 76,800 tokens
  • Loop variants use recurrent transformer design with shared parameters across two iterations

For more details, please refer to our Technical Report, GitHub.

Quickstart

IQuest-Coder-V1 uses custom modeling code via Hugging Face's auto_map feature. We recommend using transformers>=4.52.4.

Basic Usage with Transformers

…

Using Thinking Models

For complex reasoning tasks, use the Thinking variant:

python
model_name = "IQuestLab/IQuest-Coder-V1-40B-Thinking"

# The Thinking model includes explicit reasoning traces
# Use similar code as above, but expect longer, more detailed responses
# with step-by-step problem decomposition

Deployment with vLLM

For production deployment, you can use vLLM to create an OpenAI-compatible API endpoint. Please refer to the vLLM PR for implementation details.

bash
vllm serve IQuestLab/IQuest-Coder-V1-40B-Instruct --tensor-parallel-size 8

For Thinking models with reasoning support:

bash
vllm serve IQuestLab/IQuest-Coder-V1-40B-Thinking --reasoning-parser qwen3 --tensor-parallel-size 8

When using tool, IQuest-Coder-V1-40B-Instruct and IQuest-Coder-V1-40B-Loop-Instruct should use --tool-parser qwen3, while IQuest-Coder-V1-7B-Instruct, IQuest-Coder-V1-7B-Thinking, IQuest-Coder-V1-14B-Instruct, IQuest-Coder-V1-14B-Thinking, IQuest-Coder-V1-40B-Thinking and IQuest-Coder-V1-40B-Loop-Thinking should use --tool-parser qwen3_coder.

CLI-Like Agents and Tools Usage

CLI-like agent capabilities are available for the following models: IQuest-Coder-V1-7B-Instruct, IQuest-Coder-V1-7B-Thinking, IQuest-Coder-V1-14B-Instruct, IQuest-Coder-V1-14B-Thinking, IQuest-Coder-V1-40B-Thinking and IQuest-Coder-V1-40B-Loop-Thinking.

Step 1: Deploy the model with vLLM and set tool parser (Attention: Do not set reasoning parser for Instruct LLMs, otherwise it will cause unexpected errors):

bash
vllm serve IQuestLab/IQuest-Coder-V1-7B-Instruct --tool-parser qwen3_coder

or

bash
vllm serve IQuestLab/IQuest-Coder-V1-7B-Thinking --tool-parser qwen3_coder --reasoning-parser qwen3 

Step 2: Use Claude Code to enjoy it:

bash
export ANTHROPIC_BASE_URL="http://iquestcoder.link"
export ANTHROPIC_AUTH_TOKEN="sk-iquestcoder"
claude --model IQuestCoder-V1-7B-Instruct

Evaluation Results

Benchmark Parameters

Benchmark Temperature Top_p
Evalplus-HumanEval 0.0 -
Evalplus-MBPP 0.0 -
BigCodeBench 0.0 -
FullStackBench 0.0 -
CruxEval 0.0 -
LiveCodeBench 0.6 0.95
Aider-Polyglot 0.95 0.85
Mercury 0.2 0.85
Bird 0.2 0.95
Spider 0.2 0.95
Terminal-Bench 0.0 -
Terminal-Bench (2.0) 0.7 1.0
SWE-Verified 0.0 -
BFCL V3 0.01 0.85
Mind2Web 0.0 -

SWE-Bench Verified Evaluation

We provide the evaluation framework and trajectory data for reproducing our SWE-Bench Verified results in IQuest-Coder-Eval/SWE-Verified/.

The evaluation framework is based on R2E-Gym. To reproduce the evaluation:

bash
cd IQuest-Coder-Eval/SWE-Verified/R2E-Gym

# Install dependencies
pip install -e .

# Run evaluation
bash benchmark/bench/loopcoder/loopcoder.sh

The trajectory file ./IQuest-Coder-Eval/SWE-Verified/traj.zip contains the complete agent trajectories for our SWE-Bench Verified evaluation.

Limitations

  • Research Prototype: The current models are designed for research purposes. Real-world user experience may differ from state-of-the-art commercial models, with weaker instruction-following capabilities in certain scenarios.
  • Long-Context Management: Due to parameter size constraints, performance on long-horizon tasks and multi-turn tool invocations is limited, particularly in scenarios requiring sustained context management and complex agentic workflows.
  • Reasoning vs. Efficiency Trade-off: Thinking models provide superior reasoning but generate longer responses; Instruct models are more efficient for straightforward tasks.
  • Code Execution: Models generate code but do not execute it; always validate outputs in sandboxed environments.
  • Domain Specificity: While trained on diverse codebases, performance may vary on highly specialized or proprietary frameworks.
  • Factuality: Models may generate plausible but incorrect code; verify critical implementations thoroughly.

Citation

If you find our work helpful, please cite:

…

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

Python

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言