Instructions to use TIGER-Lab/SWE-Next-14B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TIGER-Lab/SWE-Next-14B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TIGER-Lab/SWE-Next-14B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("TIGER-Lab/SWE-Next-14B") model = AutoModelForCausalLM.from_pretrained("TIGER-Lab/SWE-Next-14B", device_map="auto") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use TIGER-Lab/SWE-Next-14B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TIGER-Lab/SWE-Next-14B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TIGER-Lab/SWE-Next-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/TIGER-Lab/SWE-Next-14B
- SGLang
How to use TIGER-Lab/SWE-Next-14B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "TIGER-Lab/SWE-Next-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TIGER-Lab/SWE-Next-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "TIGER-Lab/SWE-Next-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TIGER-Lab/SWE-Next-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use TIGER-Lab/SWE-Next-14B with Docker Model Runner:
docker model run hf.co/TIGER-Lab/SWE-Next-14B
Add model card metadata and align 14B card layout
Browse files
README.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
<a href="https://arxiv.org/abs/2603.20691"><img alt="Paper" src="https://img.shields.io/badge/Paper-arXiv-b31b1b?style=for-the-badge&logo=arxiv&logoColor=white"></a>
|
| 5 |
<a href="https://tiger-ai-lab.github.io/SWE-Next/"><img alt="Project Page" src="https://img.shields.io/badge/Project%20Page-Website-4285F4?style=for-the-badge&logo=googlechrome&logoColor=white"></a>
|
| 6 |
<a href="https://github.com/TIGER-AI-Lab/SWE-Next"><img alt="Code" src="https://img.shields.io/badge/Code-GitHub-181717?style=for-the-badge&logo=github&logoColor=white"></a>
|
|
@@ -8,178 +23,70 @@
|
|
| 8 |
<a href="https://huggingface.co/datasets/TIGER-Lab/SWE-Next"><img alt="Dataset" src="https://img.shields.io/badge/Dataset-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 9 |
<a href="https://huggingface.co/TIGER-Lab/SWE-Next-7B"><img alt="Model 7B" src="https://img.shields.io/badge/Model%207B-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 10 |
<a href="https://huggingface.co/TIGER-Lab/SWE-Next-14B"><img alt="Model 14B" src="https://img.shields.io/badge/Model%2014B-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 11 |
-
</
|
| 12 |
-
|
| 13 |
-
## 📰 News
|
| 14 |
-
|
| 15 |
-
- **2026-04-07**: SWE-Next is now publicly released!
|
| 16 |
|
| 17 |
-
#
|
| 18 |
|
| 19 |
-
|
| 20 |
|
|
|
|
| 21 |
|
|
|
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
-
|
| 28 |
|
|
|
|
| 29 |
|
| 30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
-
##
|
| 33 |
|
| 34 |
-
|
| 35 |
-
- Docker (for environment execution)
|
| 36 |
-
- [uv](https://github.com/astral-sh/uv) package manager
|
| 37 |
|
| 38 |
-
|
|
|
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
git clone https://github.com/TIGER-AI-Lab/SWE-Next.git
|
| 45 |
-
cd SWE-Next
|
| 46 |
-
uv venv && source .venv/bin/activate
|
| 47 |
-
uv sync && uv pip install -e .
|
| 48 |
```
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
Pre-built artifacts are available on HuggingFace. Download them into `data/` before running the pipeline:
|
| 53 |
-
|
| 54 |
-
| Artifact | Description | Download |
|
| 55 |
-
|----------|-------------|---------|
|
| 56 |
-
| `packages_python_filtered` | 3,900+ Python package list used as pipeline input | `huggingface-cli download TIGER-Lab/packages_python_filtered --repo-type dataset --local-dir data/packages_python_filtered` |
|
| 57 |
-
| `new_commit_better_repos` | Repos with confirmed NEW_COMMIT_BETTER commits | `huggingface-cli download TIGER-Lab/new_commit_better_repos --repo-type dataset --local-dir data/new_commit_better_repos` |
|
| 58 |
-
| `SWE-Next` | Final curated dataset (2,308 instances) | `huggingface-cli download TIGER-Lab/SWE-Next --repo-type dataset --local-dir data/SWE-Next` |
|
| 59 |
-
| `SWE-Next-SFT-Trajectories` | SFT training trajectories | `huggingface-cli download TIGER-Lab/SWE-Next-SFT-Trajectories --repo-type dataset --local-dir data/SWE-Next-SFT-Trajectories` |
|
| 60 |
-
|
| 61 |
-
Pre-trained models:
|
| 62 |
-
|
| 63 |
-
| Model | Download |
|
| 64 |
-
|-------|---------|
|
| 65 |
-
| SWE-Next-7B | `huggingface-cli download TIGER-Lab/SWE-Next-7B --repo-type model --local-dir LlamaFactory/saves/SWE_Next_7B` |
|
| 66 |
-
| SWE-Next-14B | `huggingface-cli download TIGER-Lab/SWE-Next-14B --repo-type model --local-dir LlamaFactory/saves/SWE_Next_14B` |
|
| 67 |
-
|
| 68 |
-
## 🐳 Environment Generation
|
| 69 |
-
|
| 70 |
-
SWE-Next extends environment generation to 3,900+ Python packages.
|
| 71 |
-
|
| 72 |
-
The supported package list is maintained in [`data/packages_python_filtered/packages_python_filtered.csv`](data/packages_python_filtered/packages_python_filtered.csv) and target repositories in [`data/new_commit_better_repos/new_commit_better_repos.csv`](data/new_commit_better_repos/new_commit_better_repos.csv).
|
| 73 |
-
|
| 74 |
-
## 🚀 Data Pipeline (One-Click)
|
| 75 |
-
|
| 76 |
-
`run_pr_pipeline.zsh` automates the full data collection pipeline. It reads `data/packages_python_filtered/packages_python_filtered.csv`, clones the repos automatically, and processes them end-to-end. If the CSV is not present it falls back to repos already cloned under `outputs/upstream_repos/`.
|
| 77 |
-
|
| 78 |
-
**Prerequisites:** copy `.env.template` to `.env` and fill in your credentials:
|
| 79 |
-
```
|
| 80 |
-
OPENAI_API_KEY=... # required for synthetic issue generation
|
| 81 |
-
GITHUB_TOKEN=... # required for fetching PRs
|
| 82 |
-
DOCKERHUB_USERNAME=... # required for pushing Docker images
|
| 83 |
-
DOCKERHUB_TOKEN=...
|
| 84 |
-
DOCKERHUB_NAMESPACE=... # your Docker Hub namespace
|
| 85 |
-
```
|
| 86 |
-
|
| 87 |
-
**Option 1 — Dataset only** (runs until `outputs/all_new_commit_better_pr.jsonl` is produced, no trajectories):
|
| 88 |
-
```bash
|
| 89 |
-
PR_GEN_TRAJ=0 zsh run_pr_pipeline.zsh
|
| 90 |
-
```
|
| 91 |
-
|
| 92 |
-
**Option 2 — Dataset + trajectories** (continues to run GPT-5-mini on the collected instances):
|
| 93 |
-
```bash
|
| 94 |
-
PR_GEN_TRAJ=1 PR_TRAJ_LLM_NAME=gpt-5-mini zsh run_pr_pipeline.zsh
|
| 95 |
-
```
|
| 96 |
|
| 97 |
-
To process a specific repo only:
|
| 98 |
```bash
|
| 99 |
-
|
| 100 |
```
|
| 101 |
|
| 102 |
-
##
|
| 103 |
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
Download the SWE-Next dataset first (see [Data & Models](#data--models)), then collect trajectories using a frontier LLM:
|
| 107 |
-
|
| 108 |
-
```bash
|
| 109 |
-
python src/swenext/agenthub/run/edit.py runagent_multiple \
|
| 110 |
-
--dataset "data/SWE-Next/SWE_Next_dataset.jsonl" \
|
| 111 |
-
--traj_dir "./traj/swe_next_sft" \
|
| 112 |
-
--max_workers 8 \
|
| 113 |
-
--k -1 \
|
| 114 |
-
--llm_name "gpt-5-mini" \
|
| 115 |
-
--use_fn_calling True \
|
| 116 |
-
--temperature 0.2 \
|
| 117 |
-
--max_steps 40 \
|
| 118 |
-
--backend "docker"
|
| 119 |
-
```
|
| 120 |
-
|
| 121 |
-
Or skip this step and use the pre-collected trajectories from HuggingFace (download `SWE-Next-SFT-Trajectories` above).
|
| 122 |
-
|
| 123 |
-
### Step 2 — SFT Training
|
| 124 |
-
|
| 125 |
-
Clone [LlamaFactory](https://github.com/hiyouga/LLaMA-Factory) into the project root first:
|
| 126 |
-
|
| 127 |
-
```bash
|
| 128 |
-
git clone https://github.com/hiyouga/LLaMA-Factory.git LlamaFactory
|
| 129 |
-
```
|
| 130 |
-
|
| 131 |
-
Install LlamaFactory dependencies, then train (run from the project root):
|
| 132 |
-
|
| 133 |
-
```bash
|
| 134 |
-
cd LlamaFactory && pip install -e ".[torch,metrics]" && cd ..
|
| 135 |
-
|
| 136 |
-
# Train 7B agent
|
| 137 |
-
llamafactory-cli train train/swe_next_7B.yaml
|
| 138 |
-
|
| 139 |
-
# Train 14B agent
|
| 140 |
-
llamafactory-cli train train/swe_next_14B.yaml
|
| 141 |
-
```
|
| 142 |
-
|
| 143 |
-
Trained model checkpoints will be saved to `LlamaFactory/saves/SWE_Next_7B` and `LlamaFactory/saves/SWE_Next_14B`.
|
| 144 |
-
|
| 145 |
-
### Step 3 — Evaluate on SWE-Bench Verified
|
| 146 |
-
|
| 147 |
-
Start a vLLM server with the trained model, then run evaluation:
|
| 148 |
-
|
| 149 |
-
```bash
|
| 150 |
-
# Start vLLM server (in a separate terminal)
|
| 151 |
-
vllm serve LlamaFactory/saves/SWE_Next_7B \
|
| 152 |
-
--served-model-name SWE-Next-7B \
|
| 153 |
-
--port 8000
|
| 154 |
-
|
| 155 |
-
# Run evaluation on SWE-Bench Verified (8 parallel workers)
|
| 156 |
-
export LLM_BASE_URL="http://127.0.0.1:8000/v1"
|
| 157 |
-
|
| 158 |
-
python src/swenext/agenthub/run/edit.py runagent_multiple \
|
| 159 |
-
--dataset "R2E-Gym/SWE-Bench-Verified" \
|
| 160 |
-
--split "test" \
|
| 161 |
-
--traj_dir "./traj/swe_bench_verified" \
|
| 162 |
-
--max_workers 8 \
|
| 163 |
-
--k -1 \
|
| 164 |
-
--llm_name "openai/SWE-Next-7B" \
|
| 165 |
-
--use_fn_calling False \
|
| 166 |
-
--temperature 1 \
|
| 167 |
-
--max_steps 40 \
|
| 168 |
-
--backend "docker"
|
| 169 |
-
```
|
| 170 |
|
| 171 |
-
|
|
|
|
|
|
|
|
|
|
| 172 |
|
| 173 |
-
##
|
| 174 |
|
| 175 |
```bibtex
|
| 176 |
@misc{liang2026swenextscalablerealworldsoftware,
|
| 177 |
-
title={SWE-Next: Scalable Real-World Software Engineering Tasks for Agents},
|
| 178 |
author={Jiarong Liang and Zhiheng Lyu and Zijie Liu and Xiangchao Chen and Ping Nie and Kai Zou and Wenhu Chen},
|
| 179 |
year={2026},
|
| 180 |
eprint={2603.20691},
|
| 181 |
archivePrefix={arXiv},
|
| 182 |
primaryClass={cs.SE},
|
| 183 |
-
url={https://arxiv.org/abs/2603.20691},
|
| 184 |
}
|
| 185 |
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
base_model:
|
| 8 |
+
- Qwen/Qwen2.5-Coder-14B-Instruct
|
| 9 |
+
datasets:
|
| 10 |
+
- TIGER-Lab/SWE-Next-SFT-Trajectories
|
| 11 |
+
- TIGER-Lab/SWE-Next
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
<div align="center">
|
| 15 |
+
<h1>SWE-Next: Scalable Real-World Software Engineering Tasks for Agents</h1>
|
| 16 |
+
</div>
|
| 17 |
+
|
| 18 |
+
<div align="center">
|
| 19 |
<a href="https://arxiv.org/abs/2603.20691"><img alt="Paper" src="https://img.shields.io/badge/Paper-arXiv-b31b1b?style=for-the-badge&logo=arxiv&logoColor=white"></a>
|
| 20 |
<a href="https://tiger-ai-lab.github.io/SWE-Next/"><img alt="Project Page" src="https://img.shields.io/badge/Project%20Page-Website-4285F4?style=for-the-badge&logo=googlechrome&logoColor=white"></a>
|
| 21 |
<a href="https://github.com/TIGER-AI-Lab/SWE-Next"><img alt="Code" src="https://img.shields.io/badge/Code-GitHub-181717?style=for-the-badge&logo=github&logoColor=white"></a>
|
|
|
|
| 23 |
<a href="https://huggingface.co/datasets/TIGER-Lab/SWE-Next"><img alt="Dataset" src="https://img.shields.io/badge/Dataset-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 24 |
<a href="https://huggingface.co/TIGER-Lab/SWE-Next-7B"><img alt="Model 7B" src="https://img.shields.io/badge/Model%207B-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 25 |
<a href="https://huggingface.co/TIGER-Lab/SWE-Next-14B"><img alt="Model 14B" src="https://img.shields.io/badge/Model%2014B-HuggingFace-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000"></a>
|
| 26 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
+
# SWE-Next-14B
|
| 29 |
|
| 30 |
+
SWE-Next-14B is a repository-level software engineering agent fine-tuned from **Qwen/Qwen2.5-Coder-14B-Instruct** on the released **SWE-Next SFT Trajectories**. The model is trained with full-parameter supervised fine-tuning on execution-grounded trajectories collected from real merged pull requests and validated repository environments.
|
| 31 |
|
| 32 |
+
## Introduction
|
| 33 |
|
| 34 |
+
SWE-Next introduces reusable **repo-quarter profiles**, which reuse the same environment across nearby commits in time while keeping each task run separate and reproducible. Using only **30 hours** and **639GB** of environment storage, SWE-Next processes **3,971** seed repositories and **102,582** candidate commit pairs mined from real merged PRs to construct a dataset of **2,308** self-verifying instances. SWE-Next improves downstream pass@1 on SWE-Bench Verified and SWE-Bench Lite with fewer or comparable training trajectories, making large-scale executable data collection far more practical and accessible for research.
|
| 35 |
|
| 36 |
+
<div align="center">
|
| 37 |
+
<img src="https://raw.githubusercontent.com/TIGER-AI-Lab/SWE-Next/main/docs/static/images/teaser.png" alt="SWE-Next teaser" width="100%" style="max-width: 900px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
|
| 38 |
+
</div>
|
| 39 |
|
| 40 |
+
## Model Overview
|
| 41 |
|
| 42 |
+
This model is trained on **3,693** selected SFT trajectories derived from the SWE-Next collection. The training data emphasizes clean repository-level repair traces and recovery-style debugging trajectories rather than isolated code-completion examples.
|
| 43 |
|
| 44 |
+
Training recipe summary:
|
| 45 |
|
| 46 |
+
- **Base model**: `Qwen/Qwen2.5-Coder-14B-Instruct`
|
| 47 |
+
- **Finetuning**: full-parameter SFT
|
| 48 |
+
- **Context length**: 32,768
|
| 49 |
+
- **Learning rate**: 1e-5
|
| 50 |
+
- **Scheduler**: cosine
|
| 51 |
+
- **Dataset**: `TIGER-Lab/SWE-Next-SFT-Trajectories`
|
| 52 |
|
| 53 |
+
## Usage
|
| 54 |
|
| 55 |
+
Transformers:
|
|
|
|
|
|
|
| 56 |
|
| 57 |
+
```python
|
| 58 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 59 |
|
| 60 |
+
model_id = "TIGER-Lab/SWE-Next-14B"
|
| 61 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 62 |
+
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
```
|
| 64 |
|
| 65 |
+
vLLM:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
|
|
|
| 67 |
```bash
|
| 68 |
+
vllm serve TIGER-Lab/SWE-Next-14B --served-model-name SWE-Next-14B --port 8000
|
| 69 |
```
|
| 70 |
|
| 71 |
+
## Relationship to the SWE-Next Release
|
| 72 |
|
| 73 |
+
This repo contains the released **14B** model checkpoint. Related artifacts are available separately:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
|
| 75 |
+
- **Base task dataset**: `TIGER-Lab/SWE-Next`
|
| 76 |
+
- **SFT trajectories**: `TIGER-Lab/SWE-Next-SFT-Trajectories`
|
| 77 |
+
- **Companion model**: `TIGER-Lab/SWE-Next-7B`
|
| 78 |
+
- **Project code**: `github.com/TIGER-AI-Lab/SWE-Next`
|
| 79 |
|
| 80 |
+
## Citation
|
| 81 |
|
| 82 |
```bibtex
|
| 83 |
@misc{liang2026swenextscalablerealworldsoftware,
|
| 84 |
+
title={SWE-Next: Scalable Real-World Software Engineering Tasks for Agents},
|
| 85 |
author={Jiarong Liang and Zhiheng Lyu and Zijie Liu and Xiangchao Chen and Ping Nie and Kai Zou and Wenhu Chen},
|
| 86 |
year={2026},
|
| 87 |
eprint={2603.20691},
|
| 88 |
archivePrefix={arXiv},
|
| 89 |
primaryClass={cs.SE},
|
| 90 |
+
url={https://arxiv.org/abs/2603.20691},
|
| 91 |
}
|
| 92 |
```
|