Deblank: Tool to Strip Code Formatting for LLM Token Reduction

What Deblank Does
Deblank is a preprocessing tool that removes code formatting (indentation, whitespace, line breaks) before sending code to LLMs, with a postprocessing step to restore readability. The transformation is bidirectional and AST-safe.
Performance Results
In evaluations across several models (DeepSeek-V3, Claude, Gemini, etc.):
- ~30% token reduction for languages like Java and C++
- ~9% token reduction for Python
- Negligible impact on Pass@1 accuracy for code completion
- Average latency: ~76ms
Supported Languages and Features
- Python, Java, C/C++, C#, JavaScript/TypeScript, and Go
- Handles incomplete snippets reasonably well
- Useful for fill-in-the-middle workflows
Getting Started
The project is open-sourced with these resources:
- GitHub: https://github.com/anpl-code/Deblank
- Paper: https://arxiv.org/abs/2508.13666
- Docker:
docker pull zhangcen456/deblank:latest
This type of token optimization can be particularly useful when working with context-limited LLMs or when processing large codebases, though the impact varies by language due to differences in formatting conventions.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Custom llama.cpp Backend Offloads LLM Matrix Multiplication to AMD XDNA2 NPU on Ryzen AI MAX 385
A developer built a custom llama.cpp backend that dispatches GEMM operations directly to the AMD XDNA2 NPU on Ryzen AI MAX 385 (Strix Halo), achieving 43.7 t/s decode at 0.947 J/tok with Meta-Llama-3.1-8B-Instruct Q4_K_M. The NPU decode path saves ~10W versus Vulkan-only while matching decode throughput.

Altimate Code: Open-Source Agentic Data Engineering Harness
Altimate Code is an open-source harness that provides deterministic data engineering tools for AI agents, addressing issues like hallucinated SQL and missing schema context. It includes column-level lineage, SQL anti-pattern detection, and dbt integration, with benchmarks showing 74.4% performance on ADE-bench.

FUTO Swipe: Open-Source Swipe Typing Models Match Big Tech Accuracy
FUTO releases open-source swipe typing models and a 1M swipe dataset. Encoder (635K params) + ContextLM (1.5M) + decoder (304K) achieve ~4% top-4 fail rate. Fully offline in FUTO Keyboard.

Supra-50M-Reasoning: Open-Source Tiny Model with Chain-of-Thought Thinking
SupraLabs releases Supra-50M-Reasoning, a 50M parameter model fine-tuned to produce full chain-of-thought before answers. Hand-written 500-sample dataset, fully open source.