Buckets:
| Name | Size | Uploaded | Xet hash |
|---|---|---|---|
| .gitattributes | 1.62 kB xet | 65dec27b | |
| README.md | 5.15 kB xet | 37c70c4d | |
| banner.png | 327 kB xet | 9e6df646 | |
| config.json | 727 Bytes xet | e5f80d76 | |
| generation_config.json | 238 Bytes xet | 9e24cfb6 | |
| merges.txt | 1.67 MB xet | c4f1ad7c | |
| model-00000-of-00002.safetensors | 5.36 GB xet | cc569901 | |
| model-00001-of-00002.safetensors | 2.69 GB xet | 301e276b | |
| model.safetensors.index.json | 32.8 kB xet | fceef29f | |
| tokenizer.json | 11.4 MB xet | 693ec4b3 | |
| tokenizer_config.json | 9.38 kB xet | 5650f886 | |
| vocab.json | 2.78 MB xet | 9208e1be |
microsoft/FastContext ──▶ 404
github.com/microsoft/FastContext ──▶ 404
│
▼
┌──────────────────────────┐
│ weights preserved here │
│ bf16 · 8.0 GB · intact │
└──────────────────────────┘
you can't un-open-source
WEIGHTS BF16 · UNMODIFIED |
ARCH QWEN3 DENSE · 36L |
CONTEXT 256K NATIVE |
LICENSE MIT |
Microsoft open-sourced FastContext under MIT, then deleted it from both HuggingFace and GitHub about two weeks later (verified: 404 on both, 2026-07-02). MIT means preservation is legal — so here it is, unmodified. Own your AI: a model on your disk can't be sunset by a quarterly review.
🔍 What it is
A repository-exploration subagent for coding agents. Invoked on demand by your main agent, it fires parallel read-only tool calls (READ / GLOB / GREP) across a repo and returns only the file paths + line ranges that matter, as compact context. Your frontier coding agent stops wasting its context window (and your bill) crawling the file tree.
Microsoft's (now-deleted) announcement reported ~60% fewer tokens from the main coding agent and +5.5% on SWE-bench — their figures; the source no longer exists to cite.
Architecture: plain Qwen3ForCausalLM dense 4B — 36 layers, 256K native context. No exotic modules; loads with standard transformers.
🚀 Quick start
from transformers import AutoModelForCausalLM, AutoTokenizer
m = AutoModelForCausalLM.from_pretrained("KikoCis/FastContext-1.0-4B-SFT", torch_dtype="bfloat16", device_map="auto")
tok = AutoTokenizer.from_pretrained("KikoCis/FastContext-1.0-4B-SFT")
Don't want 8 GB? Grab the GGUF quants (1.96–2.5 GB, long-context imatrix, retrieval-validated 30/30 vs this bf16): 👉 KikoCis/FastContext-1.0-4B-longctx-imatrix-GGUF
⚠️ Good to know
- It's a scout, not a solver — it finds and returns evidence; pair it with a main coding agent that writes the actual fix.
- Upstream docs, harness code and issues were deleted along with the repos; usage conventions here come from the announcement and community mirrors.
- Weights are byte-identical to the (re-uploaded) original — no fine-tuning, no edits.
📚 Credit & license
Model, weights, training: © Microsoft (MIT). This is a preservation mirror sourced via the ShaunGves/FastContext-1.0-4B-SFT re-upload after microsoft/FastContext-1.0-4B-SFT was removed. Nothing modified. Quantized companion + validation: KikoCis.
- Total size
- 8.06 GB
- Files
- 12
- Last updated
- Jul 2
- Pre-warmed CDN
- US EU US EU
