mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
## Description Adds `headroom wrap omp` / `headroom unwrap omp` — a one-command wrap for [Oh My Pi](https://www.npmjs.com/package/@oh-my-pi/pi-coding-agent) (`omp`), the pi-mono-lineage coding agent, as proposed in #1149. One honest correction to the issue: #1149 proposed reusing the `ANTHROPIC_BASE_URL` redirect from `wrap claude`. During implementation I probed that empirically and it turned out to be wrong — omp only reads `ANTHROPIC_BASE_URL` in its web-search helper; its **chat** endpoint comes from the model registry (`providers.anthropic.baseUrl` in `~/.omp/agent/models.yml`). With the env var pointed at a local probe server, omp's chat traffic still went straight to the real endpoint (0 probe hits); with a `models.yml` same-ID override, every request arrived at the probe (9/9 hits on `/v1/messages`). A same-ID override keeps omp's bundled Anthropic model catalog and stored credentials (both keyed by provider id `anthropic`), so only the endpoint moves. The wrap therefore injects a marker-fenced `providers.anthropic.baseUrl` override into `models.yml`, snapshotting the pre-wrap file **byte-for-byte** first, and `headroom unwrap omp` restores it exactly (or removes the file when the wrap created it) — the same durable-wrap + backup + unwrap contract `wrap codex` uses for `config.toml`. Closes #1149 ## Type of Change - [ ] Bug fix (non-breaking change that fixes an issue) - [x] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [ ] Performance improvement - [ ] Code refactoring (no functional changes) ## Changes Made - `headroom/providers/omp/` (new provider slice): `models_yml_path()` (honors `PI_CODING_AGENT_DIR`), `inject_models_override()` (yaml-merge preserving user providers; pristine byte-for-byte backup, never re-snapshotted while managed), `restore_models_override()` (`restored` / `removed` / `noop`; never touches an unmanaged file), `build_launch_env()` - `headroom/cli/wrap.py`: `wrap omp` (mirrors the aider/vibe `_launch_tool` shape; rtk instructions into the project's `AGENTS.md`, which omp reads natively) and `unwrap omp` (restore models.yml + scrub rtk block + stop proxy) - `headroom/telemetry/context.py`: `omp` added to `_KNOWN_WRAP_AGENTS` so the stack slug reports `wrap_omp` instead of `unknown` - `README.md` (agent matrix row + unwrap list), `llms.txt`, `CHANGELOG.md` - `tests/test_cli/test_wrap_omp.py`: 16 tests (injection fresh/merge/re-inject, restore statuses incl. unmanaged-file safety, env passthrough, CLI wiring, unwrap flows) ## Testing - [ ] Unit tests pass (`pytest`) — all new + `test_cli` tests pass; the full suite carries **3 pre-existing failures** that reproduce identically on unmodified `origin/main` (same set, same asserts — see Test Output and the rebase-validation comment) - [x] Linting passes (`ruff check .`) - [x] Type checking passes (`mypy headroom`) - [x] New tests added for new functionality - [x] Manual testing performed ### Test Output ```text $ uv run pytest -q # post-rebase, base4f22cbb03 failed, 7723 passed, 515 skipped in 262.64s FAILED tests/test_cli/test_wrap_claude_base_url.py::test_wrap_marker_is_stale_when_pid_reused FAILED tests/test_rtk_session_savings.py::test_rtk_reader_returns_none_on_nonzero_exit FAILED tests/test_rtk_session_savings.py::test_lean_ctx_reader_returns_none_on_failure_and_logs → all three reproduce identically on unmodified origin/main (4f22cbb0), run the same way (same worktree + venv, sources switched): 3 failed, 7707 passed — this branch = baseline + the 16 new tests, nothing else changes. (The pre-rebase run againste8151f05showed the same shape: one order-dependent flake that also reproduced on its baseline; these are env/order-dependent.) $ uv run pytest tests/test_cli/ -q # post-rebase 542 passed + 1 of the pre-existing failures above # includes the 16 new test_wrap_omp.py tests $ uv run ruff check . ; echo ruff-check-exit:$? All checks passed! ruff-check-exit:0 $ uv run ruff format --check . # post-rebase 1 pre-existing violation: headroom/proxy/handlers/anthropic.py — flagged identically on unmodified origin/main (not touched by this PR); every file this PR touches is clean $ uv run mypy headroom # post-rebase; output redirected to file; exit captured Success: no issues found in 409 source files mypy-exit:0 ``` ## Real Behavior Proof - Environment: macOS 15 (arm64, M1 Pro), Python 3.12.13 (uv venv, editable install incl. Rust `_core`), headroom @ this branch, base extras only (no `[ml]`), Anthropic account signed into omp. Initial proof ran on basee8151f05with omp 16.3.6 (`@oh-my-pi/pi-coding-agent` via bun); re-validated after the rebase onto4f22cbb0with omp 16.3.11 — fresh numbers in the rebase-validation comment. - Exact command / steps: four scenarios, run in this order — 1. Mechanism probe (why models.yml, not env): local HTTP probe server on `127.0.0.1:18999`; ran `omp -p "say ok" --model claude-fable-5 --no-session --no-tools` once with `ANTHROPIC_BASE_URL=http://127.0.0.1:18999`, once with `~/.omp/agent/models.yml` containing `providers.anthropic.baseUrl: http://127.0.0.1:18999`. 2. One-command path: `headroom wrap omp --no-rtk --port 8790 -- -p "Read CHANGELOG.md and count how many '### Fixed' headings it contains. Answer with just the number." --model claude-fable-5 --no-session --max-time 180` 3. Routing stats: separate proxy on :8788, wrap with `--no-proxy`, then `GET /stats`. 4. Restore: `headroom unwrap omp`, plus an isolated `PI_CODING_AGENT_DIR=/tmp/omp-agent-test` run with a pre-existing user `models.yml`, then `cmp` against the original. - Observed result: end-to-end routing through the proxy proven for every scenario — - Probe: env-var run → **0 probe hits**, omp answered normally (bypassed). models.yml run → **9 hits on `/v1/messages?beta=true`** with real Messages bodies. This is the routing mechanism the wrap uses. - One-command run: wrap started the proxy ("Proxy ready on http://127.0.0.1:8790"), wrote the override (`models.yml: providers.anthropic.baseUrl=http://127.0.0.1:8790/p/headroom-wrap-omp`), launched omp, and omp answered **"7"** (correct — real `read` tool work through the proxy). Proxy log for the session (3 requests, `anthropic_messages` path): ``` PERF model=claude-fable-5 msgs=1 tok_before=36 cache_read=0 cache_write=61939 cache_hit_pct=0 PERF model=claude-fable-5 msgs=3 tok_before=796 cache_read=0 cache_write=63308 cache_hit_pct=0 PERF model=claude-fable-5 msgs=5 tok_before=935 cache_read=63308 cache_write=215 cache_hit_pct=100 ``` Prompt caching survives the proxy (100% hit on the follow-up turn). - Routing stats (:8788 session): `requests.total: 2, by_provider: {"anthropic": 2}, by_model: {"claude-fable-5": 2}`, per-project prefix `/p/headroom-wrap-omp` attributed. - Unwrap: `Removed wrap-created models.yml` (file gone); isolated pre-existing-file run: backup created, user's `my-gw` provider preserved in the managed file, and after `unwrap omp` the restored file is **byte-identical** (`cmp` clean). - Compression: **not observed in this environment** — `tok_saved=0`, `transforms=router:noop` / `too_small`. Honest reading: omp minimizes its own tool outputs client-side (a 300-item JSON tool result reached the proxy at only ~657 tokens) and the `[ml]` text compressor wasn't installed; small print-mode payloads sit below crush thresholds, and passthrough-by-default is the documented safety contract. The wrap's value here is proven at the routing/lifecycle/cache layer; compression numbers will match whatever the proxy does for a given content mix. - Not tested: Windows / Linux; lean-ctx mode with omp (`HEADROOM_CONTEXT_TOOL=lean-ctx` — `lean-ctx init --agent omp` depends on lean-ctx recognizing the agent; failure degrades with a warning by design); long interactive (non `-p`) sessions; `--memory` / `--learn` / `--code-graph` flags combined with omp; OAuth-vs-API-key matrix beyond my local account. ## Review Readiness - [x] I have performed a self-review - [x] This PR is ready for human review ## Checklist - [x] My code follows the project's style guidelines - [x] I have performed a self-review of my code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes — all except the 3 documented pre-existing failures, which fail identically on unmodified origin/main - [x] I have updated the CHANGELOG.md if applicable ## Screenshots (if applicable) N/A — terminal evidence inline above. ## Additional Notes - The models.yml override is regenerated from the pristine backup on every wrap, so re-running with a different `--port` updates the endpoint idempotently and the backup is never clobbered. - Scope note from #1149 stands: this routes omp's **Anthropic** provider family. omp's other providers (OpenAI-direct, Gemini, ...) resolve their endpoints from their own registry entries; users can already point those at Headroom with their own custom provider in `models.yml`. - `headroom/providers/omp/` deliberately contains no install-time / MCP pieces — this is the thin wrap + unwrap slice only. --------- Co-authored-by: JerrettDavis <mxjerrett@gmail.com> Co-authored-by: Tejas Chopra <chopratejas@gmail.com>
497 lines
19 KiB
TOML
497 lines
19 KiB
TOML
[build-system]
|
||
requires = ["maturin>=1.5,<2.0"]
|
||
build-backend = "maturin"
|
||
|
||
[project]
|
||
name = "headroom-ai"
|
||
version = "0.32.0"
|
||
description = "The Context Optimization Layer for LLM Applications - Cut costs by 50-90%"
|
||
readme = "README.md"
|
||
license = "Apache-2.0"
|
||
requires-python = ">=3.10"
|
||
authors = [
|
||
{ name = "Headroom Contributors" }
|
||
]
|
||
maintainers = [
|
||
{ name = "Headroom Contributors" }
|
||
]
|
||
keywords = [
|
||
"llm",
|
||
"openai",
|
||
"anthropic",
|
||
"claude",
|
||
"gpt",
|
||
"context",
|
||
"token",
|
||
"optimization",
|
||
"compression",
|
||
"caching",
|
||
"proxy",
|
||
"ai",
|
||
"machine-learning",
|
||
]
|
||
classifiers = [
|
||
"Development Status :: 4 - Beta",
|
||
"Intended Audience :: Developers",
|
||
"License :: OSI Approved :: Apache Software License",
|
||
"Operating System :: OS Independent",
|
||
"Programming Language :: Python :: 3",
|
||
"Programming Language :: Python :: 3.10",
|
||
"Programming Language :: Python :: 3.11",
|
||
"Programming Language :: Python :: 3.12",
|
||
"Programming Language :: Python :: 3.13",
|
||
"Programming Language :: Python :: 3.14",
|
||
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||
"Typing :: Typed",
|
||
]
|
||
dependencies = [
|
||
# Core: lightweight compression (SmartCrusher, ContentRouter, CCR, TOIN)
|
||
"tiktoken>=0.5.0", # Tokenizer for all compressors
|
||
"pydantic>=2.0.0", # Config and data models
|
||
# litellm's own metadata pins requires-python <3.14, and headroom only uses it for
|
||
# model registry / pricing / non-core providers — all lazily imported and
|
||
# ImportError-guarded. Marking it 3.14-optional lets headroom install on Python 3.14
|
||
# (core compression + the Anthropic proxy path never import litellm). See GH #956.
|
||
"litellm>=1.86.2,<2.0; python_version < '3.14'", # model registry, pricing, providers (lazy)
|
||
"click>=8.3.3", # CLI framework; PYSEC-2026-2132 fix (command injection in click.edit())
|
||
"rich>=13.0.0", # Rich terminal output
|
||
"opentelemetry-api>=1.24.0", # Safe no-op OTEL API for instrumentation
|
||
"ast-grep-cli>=0.30.0", # AST-aware code slicing (CodeCompressor); binary wheel
|
||
"pyyaml>=6.0", # omp wrap: parse/merge omp's models.yml registry
|
||
"tomli>=2.0.0; python_version < '3.11'", # tomllib backport for helper scripts
|
||
]
|
||
|
||
[project.optional-dependencies]
|
||
# Proxy server (most common install: pip install headroom-ai[proxy])
|
||
proxy = [
|
||
"fastapi>=0.100.0",
|
||
"uvicorn>=0.23.0,<1.0",
|
||
# LiteLLM provider backends (e.g. openrouter) expect orjson at runtime but
|
||
# litellm only declares it under its own [proxy] extra (GH #2056).
|
||
"orjson>=3.9.14; platform_python_implementation != 'PyPy'",
|
||
"httpx[http2]>=0.24.0",
|
||
"openai>=2.14.0", # OpenAI API format support
|
||
"mcp>=1.0.0", # MCP server (headroom_compress, retrieve, stats)
|
||
"magika>=0.6.0", # ML content detection for ContentRouter
|
||
"zstandard>=0.20.0", # Decompress zstd request bodies (Codex, etc.)
|
||
"websockets>=13.0", # WebSocket proxy for /v1/responses (Codex gpt-5.4+)
|
||
"onnxruntime>=1.16.0", # Kompress ONNX INT8 text compression (no torch needed)
|
||
"transformers>=5.5.0,<6.0", # Tokenizer only (for Kompress)
|
||
"watchdog>=4.0.0", # File watcher for live code graph reindexing (--code-graph)
|
||
"sqlite-vec>=0.1.6", # Vector index for memory (--memory). Lightweight, no torch.
|
||
]
|
||
# Production ASGI/WSGI server — Unix-only (gunicorn does not support Windows).
|
||
# Kept separate from [proxy] so that dev, CI, and Windows users are not forced
|
||
# to install a non-functional package. Production deployments should use:
|
||
# pip install headroom-ai[proxy,proxy-prod]
|
||
proxy-prod = [
|
||
"headroom-ai[proxy]",
|
||
"gunicorn>=21.0.0; sys_platform != 'win32'",
|
||
]
|
||
# AST-based code compression (tree-sitter)
|
||
# NOTE: cap below 1.0. tree-sitter-language-pack 1.x is a breaking rewrite whose
|
||
# get_language()/get_parser() return the pack's own binding types instead of
|
||
# standalone tree_sitter.Language/Parser, so _get_parser() in
|
||
# transforms/code_compressor.py fails and code compression silently no-ops.
|
||
# The 0.x line (>=0.10,<1.0) returns standalone tree_sitter objects as expected.
|
||
code = [
|
||
"tree-sitter-language-pack>=0.10.0,<1.0",
|
||
"tree-sitter>=0.25.2,<0.27",
|
||
]
|
||
# ML-based compression with Kompress (ModernBERT).
|
||
# (The legacy [llmlingua] extra was removed in 0.9.x — no live code path used it.
|
||
# Use [ml] for the supported ML compression dependencies.)
|
||
ml = [
|
||
# PyTorch does not publish wheels for macOS 15 x86_64 at this floor, which
|
||
# makes `headroom-ai[all]` unsatisfiable on Intel Macs (#1931).
|
||
"torch>=2.12.1; sys_platform != 'darwin' or platform_machine != 'x86_64'",
|
||
"transformers>=5.5.0,<6.0",
|
||
# transformers >= 5.x requires huggingface-hub >= 1.5.0,<2.0; pinning
|
||
# the floor here prevents Kompress from silently falling back to
|
||
# "unavailable" when a sibling install (e.g. `pip install
|
||
# strands-agents`) drags huggingface-hub backwards.
|
||
"huggingface-hub>=1.5.0,<2.0",
|
||
]
|
||
# Memory system (hierarchical memory with vector search).
|
||
# Uses the pure-Python sqlite-vec backend by default (VectorBackend.AUTO ->
|
||
# SQLITE_VEC), so no C++ toolchain is required. The optional HNSW backend lives
|
||
# in the [vector] extra below; installing it here would make `[all]` (which pulls
|
||
# [memory]) fail on any machine without a compiler — see #1368.
|
||
memory = [
|
||
"sqlite-vec>=0.1.6",
|
||
"sentence-transformers>=2.2.0,<6.0; sys_platform != 'darwin' or platform_machine != 'x86_64'",
|
||
]
|
||
# Optional HNSW vector backend. Needs a C++ toolchain to build hnswlib, so it is
|
||
# kept out of [memory] and [all]; opt in with `pip install headroom-ai[vector]`
|
||
# and select it via MemoryConfig(vector_backend=VectorBackend.HNSW). The default
|
||
# sqlite-vec backend needs no compiler.
|
||
vector = [
|
||
"hnswlib>=0.8.0",
|
||
]
|
||
# Qdrant + Neo4j memory backend helpers
|
||
memory-stack = [
|
||
"mem0ai>=2.0.0,<3.0",
|
||
"qdrant-client>=1.9.0,<2.0",
|
||
"neo4j>=5.20.0,<7.0",
|
||
]
|
||
# Apple-Silicon GPU (MPS) offload for the memory embedder. Opt in at runtime with
|
||
# HEADROOM_EMBEDDER_RUNTIME=pytorch_mps. macOS-only; intentionally excluded from [all].
|
||
pytorch-mps = [
|
||
"torch>=2.12.1; sys_platform == 'darwin'",
|
||
"sentence-transformers>=2.2.0; sys_platform == 'darwin'",
|
||
]
|
||
# Semantic relevance scoring with embeddings.
|
||
# Uses `fastembed` (BAAI/bge-small-en-v1.5 by default — 33M params,
|
||
# 384 dims, ~30 MB int8-quantized ONNX). Same library + model used by
|
||
# the Rust SmartCrusher (`fastembed` crate), giving byte-equal embeddings
|
||
# across the language boundary. Replaced sentence-transformers in
|
||
# Stage 3c.1 — fastembed is faster (~2-3x), smaller (no torch
|
||
# dependency), and outranks all-MiniLM-L6-v2 on MTEB by ~6 points.
|
||
relevance = [
|
||
"fastembed>=0.4.0",
|
||
"numpy>=1.24.0",
|
||
]
|
||
# Image compression (ML-based routing + OCR)
|
||
#
|
||
# OCR backend uses ONNX Runtime regardless of Python version. The
|
||
# rapidocr ecosystem split into two flavors after 1.4.x:
|
||
# * rapidocr-onnxruntime 1.4.x — bundled-ORT package, capped at
|
||
# Python <3.13 by its requires-python metadata. Drop-in for our
|
||
# existing v1 tuple-shaped API call.
|
||
# * rapidocr 3.x — engine-agnostic core, supports Python 3.13+.
|
||
# Returns a RapidOCROutput dataclass (txts, scores, boxes, ...).
|
||
# Needs `onnxruntime` installed separately to use the ORT backend.
|
||
#
|
||
# `headroom/image/compressor.py` adapts both API shapes at runtime via
|
||
# a try/except cascade. See issue #372 for context.
|
||
image = [
|
||
"pillow>=12.3.0", # PYSEC-2026-2253/2254/2255/2256/2257 fixes (decompression-bomb + cmd-injection)
|
||
"sentencepiece>=0.1.99", # Required by SigLIP tokenizer (SiglipTokenizer)
|
||
# Python 3.6–3.12: keep the proven ORT-bundled package directly.
|
||
# ~15 MB ONNX models auto-downloaded on first use.
|
||
"rapidocr-onnxruntime>=1.4.0,<2; python_version<'3.13'",
|
||
# Python 3.13+: rapidocr-onnxruntime is unavailable (its wheels
|
||
# declare requires-python<3.13). Use the successor `rapidocr` 3.x
|
||
# core + `onnxruntime` engine; same ORT backend, just split into
|
||
# two packages. Total install size and inference speed unchanged.
|
||
"rapidocr>=3.0,<4; python_version>='3.13'",
|
||
"onnxruntime>=1.7,<2; python_version>='3.13'",
|
||
]
|
||
# Report generation
|
||
reports = [
|
||
"jinja2>=3.0.0",
|
||
]
|
||
# Binary spreadsheet ingestion (.xlsx / .xls -> tabular text)
|
||
spreadsheet = [
|
||
"openpyxl>=3.1.0", # .xlsx
|
||
"xlrd>=2.0.1", # legacy .xls
|
||
]
|
||
# OpenTelemetry metrics export
|
||
otel = [
|
||
"opentelemetry-sdk>=1.24.0",
|
||
"opentelemetry-exporter-otlp-proto-http>=1.24.0",
|
||
]
|
||
# any-llm multi-provider backend (requires Python 3.11+)
|
||
anyllm = [
|
||
"any-llm-sdk>=1.0.0; python_version >= '3.11'",
|
||
]
|
||
# LangChain integration
|
||
langchain = [
|
||
"langchain-core>=1.3.3,<4.0",
|
||
"langchain-openai>=1.1.14,<2.0",
|
||
]
|
||
# Agno agent framework integration
|
||
agno = [
|
||
"agno>=1.0.0",
|
||
]
|
||
# AWS Strands Agents SDK integration
|
||
strands = [
|
||
"strands-agents>=0.1.0",
|
||
]
|
||
# MCP server for Claude Code integration
|
||
mcp = [
|
||
"mcp>=1.0.0",
|
||
"httpx>=0.24.0",
|
||
"starlette>=0.27.0",
|
||
"uvicorn>=0.23.0,<1.0",
|
||
]
|
||
# Voice filler detection
|
||
voice = [
|
||
"onnxruntime>=1.16.0",
|
||
"transformers>=5.5.0,<6.0",
|
||
"torch>=2.12.1; sys_platform != 'darwin' or platform_machine != 'x86_64'",
|
||
]
|
||
# Voice training (includes voice deps + training extras)
|
||
voice-train = [
|
||
"headroom-ai[voice]",
|
||
"datasets>=2.14.0",
|
||
"accelerate>=0.20.0",
|
||
]
|
||
# Evaluation framework
|
||
evals = [
|
||
"datasets>=2.14.0",
|
||
"sentence-transformers>=2.2.0,<6.0; sys_platform != 'darwin' or platform_machine != 'x86_64'",
|
||
"numpy>=1.24.0",
|
||
"scikit-learn>=1.3.0",
|
||
"anthropic>=0.18.0",
|
||
"openai>=1.0.0",
|
||
]
|
||
# AWS Bedrock backend
|
||
bedrock = [
|
||
# `aws login` (IAM Identity Provider / console-login, DPoP) requires
|
||
# boto3 >= 1.41.0 AND the AWS Common Runtime (CRT) per AWS docs
|
||
# ("Boto3 1.41.0 or later with CRT"). CRT is a separate install — pull it
|
||
# via the botocore [crt] extra (awscrt). Without it, resolving `aws login`
|
||
# credentials raises botocore's MissingDependencyException.
|
||
"boto3>=1.41.0",
|
||
"botocore[crt]>=1.41.0",
|
||
]
|
||
# HTML content extraction
|
||
html = [
|
||
"trafilatura>=1.6.0",
|
||
]
|
||
# Development dependencies
|
||
dev = [
|
||
"pytest>=7.0.0",
|
||
"pytest-cov>=4.0.0",
|
||
"pytest-asyncio>=0.21.0",
|
||
"ruff>=0.1.0",
|
||
"mypy>=1.0.0",
|
||
"pre-commit>=3.0.0",
|
||
"openai>=1.0.0",
|
||
"anthropic>=0.18.0",
|
||
"litellm>=1.86.2,<2.0; python_version < '3.14'", # see core deps note (GH #956)
|
||
"fastapi>=0.100.0",
|
||
"uvicorn>=0.23.0,<1.0",
|
||
"httpx[http2]>=0.24.0",
|
||
"websockets>=13.0",
|
||
"opentelemetry-sdk>=1.24.0",
|
||
"opentelemetry-exporter-otlp-proto-http>=1.24.0",
|
||
"ollama>=0.4.0",
|
||
"langchain-ollama>=0.2.0",
|
||
"hnswlib>=0.8.0",
|
||
"sqlite-vec>=0.1.6",
|
||
"sentence-transformers>=2.2.0,<6.0",
|
||
"numpy>=1.24.0",
|
||
"openpyxl>=3.1.0", # exercises spreadsheet_ingest (.xlsx) in the test suite
|
||
"respx>=0.20.0", # HTTP mock transport for passthrough handler tests
|
||
]
|
||
# All optional dependencies (everything you need).
|
||
#
|
||
# The EleutherAI lm-evaluation-harness is intentionally not exposed as a
|
||
# project extra. Headroom invokes it as an external subprocess
|
||
# (`python -m lm_eval`), and the harness currently pulls sqlitedict
|
||
# CVE-2024-35515 with no upstream fix. Keeping it out of locked project extras
|
||
# prevents repository scanners from flagging production installs; researchers
|
||
# who need standard accuracy benchmarks can install `lm-eval[api]` in their
|
||
# benchmark environment separately.
|
||
all = [
|
||
"headroom-ai[proxy,code,ml,memory,relevance,image,reports,otel,evals,voice,html,mcp,spreadsheet]",
|
||
]
|
||
# Sandbox: a lean proxy with ALL torch-free capability — for running Headroom in
|
||
# a locked-down/low-resource sandbox and offloading heavy ML elsewhere.
|
||
#
|
||
# = [all] MINUS:
|
||
# - image (SigLIP/OCR — excluded by request)
|
||
# - ml (torch — the PyTorch Kompress backend; ONNX path in [proxy] still
|
||
# runs Kompress locally with no torch, or offload it entirely via
|
||
# HEADROOM_KOMPRESS_ENDPOINT)
|
||
# - voice (excluded by request)
|
||
# - memory + evals (both pull sentence-transformers -> torch, i.e. the very
|
||
# ML weight a sandbox avoids; evals is a dev/test harness, not a
|
||
# runtime feature). Opt back in explicitly if you accept torch:
|
||
# pip install headroom-ai[sandbox,memory]
|
||
#
|
||
# Everything kept here is torch-free: code-aware compression (tree-sitter),
|
||
# embedding relevance (fastembed), HTML/spreadsheet ingestion, reports, OTel.
|
||
sandbox = [
|
||
"headroom-ai[proxy,code,relevance,reports,otel,html,mcp,spreadsheet]",
|
||
]
|
||
|
||
[project.scripts]
|
||
headroom = "headroom.cli:main"
|
||
|
||
[project.urls]
|
||
Homepage = "https://headroom-docs.vercel.app"
|
||
Documentation = "https://headroom-docs.vercel.app/docs"
|
||
Repository = "https://github.com/chopratejas/headroom"
|
||
Issues = "https://github.com/chopratejas/headroom/issues"
|
||
Changelog = "https://github.com/chopratejas/headroom/blob/main/CHANGELOG.md"
|
||
# llms.txt convention (llmstxt.org) — point AI agents / LLM crawlers
|
||
# at the auto-generated docs index so they can resolve install paths
|
||
# and entry points without a follow-up fetch.
|
||
"AI / LLM Index" = "https://headroom-docs.vercel.app/llms.txt"
|
||
|
||
# Maturin builds a single wheel containing both the Python source under
|
||
# `headroom/` AND the compiled Rust extension `headroom/_core.so` (cdylib
|
||
# from `crates/headroom-py`). One `pip install headroom-ai` ships everything
|
||
# atomically — no separate `headroom-core-py` package, no chicken-and-egg,
|
||
# no PIP_FIND_LINKS plumbing. Phase A0's runtime fail-loud check still
|
||
# exists but only fires if someone forces an sdist install on a platform
|
||
# without a wheel and the rust toolchain isn't available to compile it.
|
||
# Constrain transitive dependencies that have CVEs requiring minimum versions.
|
||
# These packages don't appear as direct headroom deps but are pulled in
|
||
# transitively; the floor pins below ensure uv resolves to patched versions.
|
||
[tool.uv]
|
||
constraint-dependencies = [
|
||
# GHSA-5239-wwwm-4pmq (Low) — transitive via rich; fix at 2.20.0
|
||
"pygments>=2.20.0",
|
||
# GHSA-4xgf-cpjx-pc3j (Medium) — transitive via mcp; fix at 2.14.2
|
||
"pydantic-settings>=2.14.2",
|
||
# GHSA-mv93-w799-cj2w + 4 others (High) — transitive via agno; fix at 3.1.50
|
||
"gitpython>=3.1.50",
|
||
# GHSA-f4xh-w4cj-qxq8 (High) — transitive via langchain-core; fix at 0.8.18
|
||
"langsmith>=0.9.0",
|
||
# CVE-2026-49825 (High, XSS) — transitive via lxml[html-clean]; fix at 0.4.5
|
||
"lxml-html-clean>=0.4.5",
|
||
# CVE-2026-5241 (High) — direct optional dep for proxy/ml/voice; fix at 5.5.0
|
||
"transformers>=5.5.0",
|
||
# PYSEC-2026-3447 — transitive dependency; fix at 83.0.0
|
||
"setuptools>=83.0.0",
|
||
]
|
||
|
||
# Pin the project's package index to public PyPI. Without this, `uv lock`
|
||
# inherits the developer's user-level `~/.config/uv/uv.toml` index
|
||
# setting — including private/internal mirrors like
|
||
# `pypi.netflix.net/simple` — and bakes those URLs into uv.lock, which
|
||
# then breaks CI on every public runner that can't reach the mirror.
|
||
# Declaring the index in pyproject.toml makes the project authoritative
|
||
# regardless of who runs `uv lock`.
|
||
[[tool.uv.index]]
|
||
name = "pypi"
|
||
url = "https://pypi.org/simple/"
|
||
default = true
|
||
|
||
[tool.maturin]
|
||
# Where the Python package lives. With `python-source = "."` and the
|
||
# package directory `headroom/` at repo root, maturin includes every file
|
||
# under `headroom/` in the wheel — that picks up the dashboard HTML
|
||
# templates and bundled YAML configs. `LICENSE` and `NOTICE` are listed
|
||
# explicitly because maturin sdists do not get the package-directory
|
||
# treatment wheels do, and PEP 639 auto-discovery emits both files into
|
||
# `License-File:` metadata — PyPI rejects sdists whose declared license
|
||
# files are missing from the tarball with `400 License-File X does not
|
||
# exist in distribution file`.
|
||
include = [
|
||
{ path = "LICENSE", format = "sdist" },
|
||
{ path = "NOTICE", format = "sdist" },
|
||
]
|
||
python-source = "."
|
||
module-name = "headroom._core"
|
||
# The cdylib source lives under `crates/headroom-py`. Maturin invokes
|
||
# `cargo build` with this manifest to produce `_core.cdylib`, then injects
|
||
# the resulting `.so` into the wheel at `headroom/_core.so`.
|
||
manifest-path = "crates/headroom-py/Cargo.toml"
|
||
features = ["extension-module"]
|
||
# Forbid building without the cdylib feature — bare `cargo build` won't
|
||
# produce a usable Python extension. Maturin's default `bindings` is "pyo3"
|
||
# which is correct here (see `crates/headroom-py/src/`).
|
||
bindings = "pyo3"
|
||
|
||
[tool.ruff]
|
||
target-version = "py310"
|
||
line-length = 100
|
||
|
||
[tool.ruff.lint]
|
||
select = [
|
||
"E", # pycodestyle errors
|
||
"W", # pycodestyle warnings
|
||
"F", # pyflakes
|
||
"I", # isort
|
||
"B", # flake8-bugbear
|
||
"C4", # flake8-comprehensions
|
||
"UP", # pyupgrade
|
||
]
|
||
ignore = [
|
||
"E501", # line too long (handled by formatter)
|
||
"B008", # do not perform function calls in argument defaults
|
||
"B905", # zip without strict parameter
|
||
]
|
||
|
||
[tool.ruff.lint.isort]
|
||
known-first-party = ["headroom"]
|
||
|
||
[tool.ruff.format]
|
||
quote-style = "double"
|
||
indent-style = "space"
|
||
|
||
[tool.mypy]
|
||
python_version = "3.10"
|
||
warn_return_any = true
|
||
warn_unused_configs = true
|
||
disallow_untyped_defs = true
|
||
ignore_missing_imports = true
|
||
|
||
# Per-module overrides for modules with dynamic typing patterns
|
||
[[tool.mypy.overrides]]
|
||
module = [
|
||
"headroom.proxy.server",
|
||
"headroom.proxy.cost",
|
||
"headroom.proxy.prometheus_metrics",
|
||
"headroom.proxy.semantic_cache",
|
||
"headroom.proxy.rate_limiter",
|
||
"headroom.proxy.request_logger",
|
||
"headroom.proxy.helpers",
|
||
"headroom.integrations.langchain",
|
||
"headroom.integrations.mcp",
|
||
"headroom.ccr.mcp_server",
|
||
"headroom.relevance.embedding",
|
||
"headroom.reporting.generator",
|
||
]
|
||
disallow_untyped_defs = false
|
||
|
||
[[tool.mypy.overrides]]
|
||
module = [
|
||
"headroom.tokenizers.*",
|
||
"headroom.providers.litellm",
|
||
"headroom.providers.google",
|
||
]
|
||
disallow_untyped_defs = false
|
||
warn_return_any = false
|
||
|
||
# Handler mixins use self.* from HeadroomProxy via duck typing — mypy can't resolve these
|
||
[[tool.mypy.overrides]]
|
||
module = ["headroom.proxy.handlers.*"]
|
||
disallow_untyped_defs = false
|
||
ignore_errors = true
|
||
|
||
# Ignore third-party stubs with syntax errors
|
||
[[tool.mypy.overrides]]
|
||
module = ["mlx.*"]
|
||
ignore_errors = true
|
||
|
||
[tool.pytest.ini_options]
|
||
testpaths = ["tests"]
|
||
python_files = ["test_*.py"]
|
||
python_functions = ["test_*"]
|
||
addopts = "-v --tb=short"
|
||
asyncio_mode = "auto"
|
||
filterwarnings = [
|
||
# pyo3 Unsendable parsers emit an unraisable warning when GC drops them on a
|
||
# test-teardown thread; this is a test-harness artifact, not a production issue
|
||
# (production threads are long-lived and drop their parsers on themselves).
|
||
"ignore::pytest.PytestUnraisableExceptionWarning",
|
||
]
|
||
markers = [
|
||
"slow: slow tests (model loads, large fixtures)",
|
||
"real_llm: tests that hit real LLM APIs; skipped unless explicitly enabled",
|
||
"live: opt-in multi-turn tests that hit real upstream APIs; require provider keys",
|
||
]
|
||
|
||
[tool.coverage.run]
|
||
source = ["headroom"]
|
||
branch = true
|
||
omit = [
|
||
"headroom/cli.py",
|
||
"*/tests/*",
|
||
]
|
||
|
||
[tool.coverage.report]
|
||
exclude_lines = [
|
||
"pragma: no cover",
|
||
"def __repr__",
|
||
"raise NotImplementedError",
|
||
"if TYPE_CHECKING:",
|
||
"if __name__ == .__main__.:",
|
||
]
|