Add text-generation pipeline tag and link paper in README
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
| 4 |
license: mit
|
|
|
|
| 5 |
tags:
|
| 6 |
- Explorer SubAgent
|
| 7 |
- Repository Exploration
|
| 8 |
- onnx
|
| 9 |
- onnxruntime-genai
|
| 10 |
-
library_name: onnxruntime-genai
|
| 11 |
-
base_model:
|
| 12 |
-
- microsoft/FastContext-1.0-4B-RL
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
| 16 |
## 1. Model Introduction
|
| 17 |
|
| 18 |
**FastContext-1.0** is a lightweight **repository-exploration subagent** for LLM coding agents. Instead of letting a single model both explore the repository and solve the task, FastContext separates these two roles: it is invoked on demand by a main coding agent, issues **parallel read-only tool calls** (READ, GLOB, GREP), and returns **compact file paths and line ranges** as focused context.
|
|
@@ -24,7 +24,7 @@ The model family spans **4B–30B parameters**, bootstrapped from strong referen
|
|
| 24 |
- **Backbones:** Qwen3-4B-Instruct (4B explorer) and Qwen3-Coder-30B-A3B (30B explorer)
|
| 25 |
- **Variants:** `FC-4B-SFT`, `FC-4B-RL` (deployment targets), `FC-30B-SFT` (scaling reference)
|
| 26 |
- **Context length:** up to 262K tokens
|
| 27 |
-
- **Paper:**
|
| 28 |
- **Code & data:** https://github.com/microsoft/fastcontext
|
| 29 |
|
| 30 |
### How it works
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- microsoft/FastContext-1.0-4B-RL
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
+
library_name: onnxruntime-genai
|
| 7 |
license: mit
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
- Explorer SubAgent
|
| 11 |
- Repository Exploration
|
| 12 |
- onnx
|
| 13 |
- onnxruntime-genai
|
|
|
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
|
|
|
| 16 |
## 1. Model Introduction
|
| 17 |
|
| 18 |
**FastContext-1.0** is a lightweight **repository-exploration subagent** for LLM coding agents. Instead of letting a single model both explore the repository and solve the task, FastContext separates these two roles: it is invoked on demand by a main coding agent, issues **parallel read-only tool calls** (READ, GLOB, GREP), and returns **compact file paths and line ranges** as focused context.
|
|
|
|
| 24 |
- **Backbones:** Qwen3-4B-Instruct (4B explorer) and Qwen3-Coder-30B-A3B (30B explorer)
|
| 25 |
- **Variants:** `FC-4B-SFT`, `FC-4B-RL` (deployment targets), `FC-30B-SFT` (scaling reference)
|
| 26 |
- **Context length:** up to 262K tokens
|
| 27 |
+
- **Paper:** [FastContext: Training Efficient Repository Explorer for Coding Agents](https://arxiv.org/abs/2606.14066)
|
| 28 |
- **Code & data:** https://github.com/microsoft/fastcontext
|
| 29 |
|
| 30 |
### How it works
|