61 merged
Open Source
Almost all of them are correctness fixes: a parser that drops data, a bill computed at 1/1000 of the real price, a kernel that returns the wrong answer when its input aliases. I find most of them while using the tool for something else.
Notable projects
A retrieval-augmented generation engine. Every fix is a document parser correctness bug.
- Fix QA DOCX table parser dropping cells between repeated text
- Fix tag CSV parser splicing wrong text after a multi-line quoted field
- Fix RAGFlowJsonParser crashing with IndexError on top-level JSON scalars
- Fix is_english() returning False for any list argument
A memory layer for AI agents.
- Fix FAISS filtered search dropping over-fetched candidates before filtering
- Fix weaviate reset() crashing because embedding dims were not passed
- Repair HTTP proxy support for httpx 0.28 and later
A gateway that calls 100+ LLM APIs in one format. Both fixes are billing correctness.
- Bill perplexity search queries at the per-request price, not 1/1000 of it
- Treat an explicit 0.0 dashscope tier cost as a real price, not a missing one
The C/C++ inference engine most local LLM tooling is built on.
- ggml-cpu: fix rms_norm_back wrong output under in-place aliasing
- llama-quant: exclude the i32 ffn_gate_tid2eid routing table from quantization
- ggml: require contiguous src for ROLL on CUDA and Metal
Apple's array framework for Apple silicon.
- Fix signed-integer overflow (UB) in roll and tile shape arithmetic
- Raise on arange with step == 0 instead of undefined behavior
The MLX language-model runtime and server.
- Fix mlx_lm.server 404 on short prompts (clamp negative start in think-token search)
An agent platform framework.
- Fix the hackernews reader taking the user id from the wrong API field
Google Research's tabular foundation model. Found during my independent evaluation.
- Fix predict crashing on multi-device hosts (IndivisibleError / device mismatch)
A TurboQuant prototype. The fix came out of my KV cache compression study.
- fix(qjl): use orthogonal projection and sqrt(d) scale factor
Developer tooling
34 merged across 19 repositories in one maintainer's ecosystem (steipete). Menu-bar apps, CLIs, and agent tooling. Mostly edge-case correctness: malformed input, boundary values, and state that survives a restart.