Views
No views yet
mini-coder-1.7b is a 1.7B parameter model distilled from Qwen 3 Coder 30B A3B. It punches well above its weight, outperforming SWE-agent-LM 7B on SWE-bench Verified Bash only:| Model | pass@1 | pass@100 |
|---|---|---|
| Qwen 3 Coder 30B-A3B | 33.2 | 67.4 |
| mini-swe-4b | 26.8 | 60.2 |
| gpt-oss-120b | 26.0 | – |
| mini-swe-1.7b | 18.6 | 50.4 |
| SWE-agent-LM 7B | 15.2 | – |
| Qwen 3 4B Instruct 2507 | 4.0 | 25.1 |
mini-coder models can be post-trained on a single 80GB GPU—or smaller. They work seamlessly with mini-swe-agent, a lightweight, scalable, and developer-friendly agentic framework well-suited for RL fine-tuning. And because they are dense rather than MoE models, they benefit from a more mature fine-tuning ecosystem.vllm serve ricdomolm/mini-coder-1.7b &http://localhost:8000.src/minisweagent/config/extra/swebench.yaml to include your local vLLM model:1model:
2 model_name: "hosted_vllm/ricdomolm/mini-coder-1.7b" # or hosted_vllm/path/to/local/model
3 model_kwargs:
4 api_base: "http://localhost:8000/v1" # adjust if using a non-default port/addressregistry.json file:1cat > registry.json <<'EOF'
2{
3 "ricdomolm/mini-coder-1.7b": {
4 "max_tokens": 40960,
5 "input_cost_per_token": 0.0,
6 "output_cost_per_token": 0.0,
7 "litellm_provider": "hosted_vllm",
8 "mode": "chat"
9 }
10}
11EOFdjango__django-11099 instance of SWE-bench Verified:LITELLM_MODEL_REGISTRY_PATH=registry.json mini-extra swebench --output test/ --subset verified --split test --filter '^(django__django-11099)$'test/ directory.1@article{olmedo2026computational,
2 title={Computational Arbitrage in AI Model Markets},
3 author={Olmedo, Ricardo and Sch{\"o}lkopf, Bernhard and Hardt, Moritz},
4 journal={arXiv preprint arXiv:2603.22404},
5 year={2026}
6}