mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
## Description
Supply-chain hardening: takes the **shipped** dependency surface from
**26 known CVEs to 0**. `pip install headroom-ai[all]` now resolves with
no known vulnerabilities (verified with Anchore syft + grype). Also
publishes a checked-in SBOM package (`sbom/`) so any user — especially
pilots running their own security review — can verify what's inside and
that we track it.
This addresses the Dependabot alerts on `main` (9 high / 4 moderate / 7
low at time of writing).
Closes #
## Type of Change
- [x] Bug fix (non-breaking change that fixes an issue)
- [ ] New feature (non-breaking change that adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
- [x] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring (no functional changes)
## Changes Made
**Rust**
- `pyo3` 0.24 → 0.29 (GHSA-36hh-v3qg-5jq4 High, GHSA-chgr-c6px-7xpp
Med). Migrated `Python::allow_threads` → `Python::detach` (10 sites) and
added `from_py_object` to the `Clone`-deriving `#[pyclass]` types (both
required by the 0.25+ API).
- `pyo3-log` 0.12 → 0.13; `lru` 0.12 → 0.18 (GHSA-rhfx-m35p-ff5j).
**Python**
- `torch` → 2.12.1, `mem0ai` → 2.x.
- Floor-pinned transitive CVE deps via `[tool.uv]
constraint-dependencies`: `pygments>=2.20.0`,
`pydantic-settings>=2.14.2`, `gitpython>=3.1.50`, `langsmith>=0.9.0`.
- **Removed `benchmark` from the `[all]` aggregate** so the default
install is CVE-free. `lm-eval` is invoked as an external subprocess
(`python -m lm_eval`) and never imported, so it is not a true runtime
dep — it remains available via the opt-in `[benchmark]` extra. See
[Accepted Risks](#additional-notes).
**npm (build/test tooling — never shipped in the
wheel/container/published SDK)**
- `esbuild` override `>=0.28.1` in `sdk/typescript` + `plugins/openclaw`
(GHSA-g7r4-m6w7-qqqr).
- `docs/`: `@anthropic-ai/sdk` → `^0.106.0` (GHSA-p7fg-763f-g4gf),
`postcss` override to force Next.js's bundled copy ≥8.5.10
(GHSA-qx2v-qp2m-jg93); regenerated a stale `bun.lock` that carried a
**Critical** vitest/vite.
**CI**
- Pinned `pypa/gh-action-pypi-publish` `@release/v1` → `@v1.13.0`
(GHSA-vxmw-7h4f-hqxh) in `release.yml` + `publish.yml`.
**SBOM**
- New `sbom/` directory: CycloneDX 1.7 + SPDX 2.3 SBOMs, grype scan
evidence, 330-package license inventory, and a regeneration guide.
## Testing
- [ ] Unit tests pass (`pytest`) — N/A, no Python source changed
(deps/config only)
- [x] Linting passes — `cargo fmt --check` + `cargo clippy` clean on the
changed crate; 0 `.py` files changed so `ruff`/`mypy` scope is
unaffected
- [x] Type checking passes — `cargo check --workspace` (0 errors)
- [ ] New tests added — N/A (dependency bumps; covered by existing
suites)
- [x] Manual testing performed — see Real Behavior Proof
### Test Output
```text
# headroom-ai[all] product surface — the number that matters
$ grype sbom:sbom/headroom-sbom-all-extra.cdx.json
No vulnerabilities found
# full repo scan (universal lock incl. opt-in [benchmark] + dev)
$ grype sbom:sbom/headroom-sbom.cdx.json
NAME INSTALLED TYPE VULNERABILITY SEVERITY
sqlitedict 2.1.0 python GHSA-g4r7-86gm-pgqc High # [benchmark]-only, unpatchable, accepted
nltk 3.9.4 python GHSA-p4gq-832x-fm9v High # [benchmark]-only, unpatchable, accepted
# pyo3 0.29 migration — extension builds + imports + runs
$ cargo check --workspace
Finished `dev` profile [unoptimized + debuginfo] target(s)
$ maturin develop && python -c "from headroom._core import DiffCompressor, SmartCrusher; ..."
extension OK — detach + from_py_object paths exercised
# lru 0.18 — eviction path
$ cargo test -p headroom-proxy --lib drift
14 passed, 213 filtered out
# per-ecosystem npm audits
$ (cd sdk/typescript && npm audit) -> found 0 vulnerabilities
$ (cd plugins/openclaw && npm audit) -> found 0 vulnerabilities
$ (cd docs && npm audit && bun audit) -> found 0 vulnerabilities / No vulnerabilities found
```
## Real Behavior Proof
- Environment: macOS (darwin 25.4.0, arm64), Python 3.12 `.venv`, Rust
1.95 toolchain, syft 1.46.0, grype 0.115.0, bun 1.3.14, maturin 1.13.3.
- Exact command / steps: (1) `uv export --extra all --no-dev
--no-emit-project | syft → grype` for the product surface; (2) `cargo
check --workspace` + `maturin develop` + extension import/compress smoke
test; (3) `cargo test -p headroom-proxy --lib drift`; (4) `cargo fmt
--check` + `cargo clippy -p headroom-py`; (5) `npm audit` in
sdk/openclaw/docs + `bun audit` in docs.
- Observed result: `headroom-ai[all]` resolution scans clean — "No
vulnerabilities found" (179 pkgs); full/prod SBOM shows only the 2
documented accepted CVEs; pyo3 0.29 extension imports and runs (detach +
from_py_object paths exercised); drift tests 14/14 pass; cargo fmt +
clippy clean; all npm/bun audits report 0.
- Not tested: full `pytest` suite (no Python source changed);
release-profile wheel build (used dev-profile `maturin develop` for the
import proof — the extension is semantically identical).
## 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
(`sbom/README.md`)
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective — N/A
(dependency bumps; existing suites + scans cover it)
- [x] New and existing unit tests pass locally with my changes
- [ ] I have updated the CHANGELOG.md — N/A (Release Please
auto-generates from the conventional commit)
## Additional Notes
**Accepted risks (the 2 residual CVEs).** Both originate solely from the
EleutherAI `lm-evaluation-harness` under the **opt-in `[benchmark]`
extra**, which Headroom invokes as a subprocess (never imports):
- `sqlitedict` CVE-2024-35515 (High) — pickle deserialization; package
abandoned (last release 2021), **no upstream fix exists**.
- `nltk` CVE-2026-54293 (High) — path traversal in `nltk.data.load()`;
affects ≤3.9.4 (current latest), **no patched release**.
Neither is in `[all]`, the published wheel, or the container. They are
documented in `sbom/README.md` and will be picked up automatically once
upstream ships fixes.
**Release/CHANGELOG:** N/A items above are because this is a
dependency/security PR with no Python source changes; CHANGELOG is
Release-Please-managed via the conventional commit message.
25 KiB
25 KiB
| 1 | Name | Version | License | URL |
|---|---|---|---|---|
| 2 | DataProperty | 1.1.0 | MIT License | https://github.com/thombashi/DataProperty |
| 3 | GitPython | 3.1.46 | BSD-3-Clause | https://github.com/gitpython-developers/GitPython |
| 4 | Jinja2 | 3.1.6 | BSD License | https://github.com/pallets/jinja/ |
| 5 | MarkupSafe | 3.0.3 | BSD-3-Clause | https://github.com/pallets/markupsafe/ |
| 6 | PyJWT | 2.11.0 | MIT | https://github.com/jpadilla/pyjwt |
| 7 | PyYAML | 6.0.3 | MIT License | https://pyyaml.org/ |
| 8 | Pygments | 2.20.0 | BSD-2-Clause | https://pygments.org |
| 9 | SQLAlchemy | 2.0.48 | MIT | https://www.sqlalchemy.org |
| 10 | absl-py | 2.4.0 | Apache-2.0 | https://github.com/abseil/abseil-py |
| 11 | accelerate | 1.12.0 | Apache Software License | https://github.com/huggingface/accelerate |
| 12 | aiofiles | 24.1.0 | Apache Software License | https://github.com/Tinche/aiofiles |
| 13 | aiohappyeyeballs | 2.6.1 | Python Software Foundation License | https://github.com/aio-libs/aiohappyeyeballs |
| 14 | aiohttp | 3.13.3 | Apache-2.0 AND MIT | https://github.com/aio-libs/aiohttp |
| 15 | aiosignal | 1.4.0 | Apache Software License | https://github.com/aio-libs/aiosignal |
| 16 | aiosqlite | 0.22.1 | MIT License | https://aiosqlite.omnilib.dev |
| 17 | annotated-doc | 0.0.4 | MIT | https://github.com/fastapi/annotated-doc |
| 18 | annotated-types | 0.7.0 | MIT License | https://github.com/annotated-types/annotated-types |
| 19 | anthropic | 0.76.0 | MIT License | https://github.com/anthropics/anthropic-sdk-python |
| 20 | anyio | 4.12.1 | MIT | https://anyio.readthedocs.io/en/stable/versionhistory.html |
| 21 | ast-grep-cli | 0.42.1 | MIT License | https://ast-grep.github.io/ |
| 22 | asyncpg | 0.31.0 | Apache-2.0 | UNKNOWN |
| 23 | attrs | 25.4.0 | MIT | https://www.attrs.org/en/stable/changelog.html |
| 24 | aurelio-sdk | 0.0.19 | UNKNOWN | UNKNOWN |
| 25 | babel | 2.18.0 | BSD License | https://babel.pocoo.org/ |
| 26 | backoff | 2.2.1 | MIT License | https://github.com/litl/backoff |
| 27 | blis | 1.3.3 | BSD License | https://github.com/explosion/cython-blis |
| 28 | boto3 | 1.43.20 | Apache-2.0 | https://github.com/boto/boto3 |
| 29 | botocore | 1.43.20 | Apache-2.0 | https://github.com/boto/botocore |
| 30 | build | 1.4.0 | MIT | https://build.pypa.io |
| 31 | catalogue | 2.0.10 | MIT License | https://github.com/explosion/catalogue |
| 32 | cbor2 | 6.1.2 | MIT | https://cbor2.readthedocs.io/en/latest/versionhistory.html |
| 33 | certifi | 2026.1.4 | Mozilla Public License 2.0 (MPL 2.0) | https://github.com/certifi/python-certifi |
| 34 | cffi | 2.0.0 | MIT | https://cffi.readthedocs.io/en/latest/whatsnew.html |
| 35 | cfgv | 3.5.0 | MIT | https://github.com/asottile/cfgv |
| 36 | chardet | 5.2.0 | GNU Lesser General Public License v2 or later (LGPLv2+) | https://github.com/chardet/chardet |
| 37 | charset-normalizer | 3.4.4 | MIT | https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md |
| 38 | click | 8.3.1 | BSD-3-Clause | https://github.com/pallets/click/ |
| 39 | cloudpathlib | 0.23.0 | MIT License | https://github.com/drivendataorg/cloudpathlib |
| 40 | colorama | 0.4.6 | BSD License | https://github.com/tartley/colorama |
| 41 | coloredlogs | 15.0.1 | MIT License | https://coloredlogs.readthedocs.io |
| 42 | colorlog | 6.10.1 | MIT License | https://github.com/borntyping/python-colorlog |
| 43 | confection | 1.3.3 | MIT License | https://github.com/explosion/confection |
| 44 | courlan | 1.3.2 | Apache Software License | https://github.com/adbar/courlan |
| 45 | coverage | 7.13.2 | Apache-2.0 | https://github.com/coveragepy/coveragepy |
| 46 | cryptography | 49.0.0 | Apache-2.0 OR BSD-3-Clause | https://github.com/pyca/cryptography |
| 47 | cymem | 2.0.13 | MIT License | https://github.com/explosion/cymem |
| 48 | datasets | 4.5.0 | Apache Software License | https://github.com/huggingface/datasets |
| 49 | dateparser | 1.3.0 | BSD License | https://github.com/scrapinghub/dateparser |
| 50 | dill | 0.4.0 | BSD License | https://github.com/uqfoundation/dill |
| 51 | distlib | 0.4.0 | Python Software Foundation License | https://github.com/pypa/distlib |
| 52 | distro | 1.9.0 | Apache Software License | https://github.com/python-distro/distro |
| 53 | docstring_parser | 0.17.0 | MIT License | https://github.com/rr-/docstring_parser |
| 54 | docutils | 0.22.4 | BSD License; GNU General Public License (GPL); Public Domain | https://docutils.sourceforge.io |
| 55 | en_core_web_lg | 3.8.0 | MIT | https://explosion.ai |
| 56 | evaluate | 0.4.6 | Apache Software License | https://github.com/huggingface/evaluate |
| 57 | fakeredis | 2.34.1 | BSD-3-Clause | https://github.com/cunla/fakeredis-py |
| 58 | fastapi | 0.128.0 | MIT | https://github.com/fastapi/fastapi |
| 59 | fastembed | 0.8.0 | Other/Proprietary License | https://github.com/qdrant/fastembed |
| 60 | fastuuid | 0.14.0 | BSD License | https://github.com/thedrow/fastuuid/ |
| 61 | filelock | 3.20.3 | Unlicense | https://github.com/tox-dev/py-filelock |
| 62 | flatbuffers | 25.12.19 | Apache Software License | https://google.github.io/flatbuffers/ |
| 63 | frozenlist | 1.8.0 | Apache-2.0 | https://github.com/aio-libs/frozenlist |
| 64 | fsspec | 2025.10.0 | BSD-3-Clause | https://github.com/fsspec/filesystem_spec |
| 65 | gh | 0.0.4 | MIT License | https://github.com/danielwhatmuff/gh |
| 66 | gitdb | 4.0.12 | BSD License | https://github.com/gitpython-developers/gitdb |
| 67 | gliner | 0.2.26 | Apache-2.0 | https://github.com/urchade/GLiNER |
| 68 | google-api-core | 2.31.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-api-core |
| 69 | google-auth | 2.55.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-auth |
| 70 | google-cloud-aiplatform | 1.158.0 | Apache 2.0 | https://github.com/googleapis/python-aiplatform |
| 71 | google-cloud-bigquery | 3.42.0 | Apache 2.0 | https://github.com/googleapis/python-bigquery |
| 72 | google-cloud-core | 2.6.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-core |
| 73 | google-cloud-resource-manager | 1.17.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-resource-manager |
| 74 | google-cloud-storage | 3.12.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-storage |
| 75 | google-crc32c | 1.8.0 | UNKNOWN | https://github.com/googleapis/python-crc32c |
| 76 | google-genai | 2.9.0 | Apache-2.0 | https://github.com/googleapis/python-genai |
| 77 | google-resumable-media | 2.10.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/google-resumable-media |
| 78 | googleapis-common-protos | 1.74.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos |
| 79 | greenlet | 3.3.2 | MIT AND PSF-2.0 | https://greenlet.readthedocs.io |
| 80 | grpc-google-iam-v1 | 0.14.4 | Apache Software License | https://github.com/googleapis/google-cloud-python |
| 81 | grpcio | 1.81.1 | Apache-2.0 | https://grpc.io |
| 82 | grpcio-status | 1.81.1 | Apache-2.0 | https://grpc.io |
| 83 | grpclib | 0.4.9 | BSD License | https://github.com/vmagamedov/grpclib |
| 84 | h11 | 0.16.0 | MIT License | https://github.com/python-hyper/h11 |
| 85 | h2 | 4.3.0 | MIT License | https://github.com/python-hyper/h2/ |
| 86 | headroom-ai | 0.27.0 | Apache-2.0 | https://headroom-docs.vercel.app |
| 87 | headroom-security | 0.1.0 | Proprietary | UNKNOWN |
| 88 | hf-xet | 1.2.0 | Apache-2.0 | https://github.com/huggingface/xet-core |
| 89 | hnswlib | 0.8.0 | UNKNOWN | https://github.com/yurymalkov/hnsw |
| 90 | hpack | 4.1.0 | MIT License | https://github.com/python-hyper/hpack/ |
| 91 | htmldate | 1.9.4 | Apache Software License | https://htmldate.readthedocs.io |
| 92 | httpcore | 1.0.9 | BSD-3-Clause | https://www.encode.io/httpcore/ |
| 93 | httpx | 0.28.1 | BSD License | https://github.com/encode/httpx |
| 94 | httpx-sse | 0.4.3 | MIT | https://github.com/florimondmanca/httpx-sse |
| 95 | huggingface_hub | 1.3.4 | Apache Software License | https://github.com/huggingface/huggingface_hub |
| 96 | humanfriendly | 10.0 | MIT License | https://humanfriendly.readthedocs.io |
| 97 | hyperframe | 6.1.0 | MIT License | https://github.com/python-hyper/hyperframe/ |
| 98 | id | 1.5.0 | Apache Software License | https://pypi.org/project/id/ |
| 99 | identify | 2.6.16 | MIT | https://github.com/pre-commit/identify |
| 100 | idna | 3.11 | BSD-3-Clause | https://github.com/kjd/idna |
| 101 | importlib_metadata | 8.7.1 | Apache-2.0 | https://github.com/python/importlib_metadata |
| 102 | iniconfig | 2.3.0 | MIT | https://github.com/pytest-dev/iniconfig |
| 103 | jaraco.classes | 3.4.0 | MIT License | https://github.com/jaraco/jaraco.classes |
| 104 | jaraco.context | 6.1.0 | MIT | https://github.com/jaraco/jaraco.context |
| 105 | jaraco.functools | 4.4.0 | MIT | https://github.com/jaraco/jaraco.functools |
| 106 | jiter | 0.12.0 | MIT License | https://github.com/pydantic/jiter/ |
| 107 | jmespath | 1.1.0 | MIT License | https://github.com/jmespath/jmespath.py |
| 108 | joblib | 1.5.3 | BSD-3-Clause | https://joblib.readthedocs.io |
| 109 | jsonlines | 4.0.0 | BSD License | https://github.com/wbolster/jsonlines |
| 110 | jsonpatch | 1.33 | BSD License | https://github.com/stefankoegl/python-json-patch |
| 111 | jsonpointer | 3.0.0 | BSD License | https://github.com/stefankoegl/python-json-pointer |
| 112 | jsonschema | 4.26.0 | MIT | https://github.com/python-jsonschema/jsonschema |
| 113 | jsonschema-specifications | 2025.9.1 | MIT | https://github.com/python-jsonschema/jsonschema-specifications |
| 114 | jusText | 3.0.2 | BSD License | https://github.com/miso-belica/jusText |
| 115 | keyring | 25.7.0 | MIT | https://github.com/jaraco/keyring |
| 116 | langchain-core | 1.2.26 | MIT License | https://docs.langchain.com/ |
| 117 | langchain-ollama | 1.0.1 | MIT | https://docs.langchain.com/oss/python/integrations/providers/ollama |
| 118 | langchain-protocol | 0.0.15 | MIT License | https://github.com/langchain-ai/agent-protocol/tree/main/streaming |
| 119 | langfuse | 4.6.1 | MIT | UNKNOWN |
| 120 | langgraph | 1.2.0 | MIT | https://docs.langchain.com/oss/python/langgraph/overview |
| 121 | langgraph-checkpoint | 4.1.0 | MIT | https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint |
| 122 | langgraph-prebuilt | 1.1.0 | MIT | https://github.com/langchain-ai/langgraph/tree/main/libs/prebuilt |
| 123 | langgraph-sdk | 0.3.14 | MIT | https://github.com/langchain-ai/langgraph/tree/main/libs/sdk-py |
| 124 | langsmith | 0.6.5 | MIT | https://smith.langchain.com/ |
| 125 | librt | 0.7.8 | MIT License | https://github.com/mypyc/librt |
| 126 | litellm | 1.88.1 | MIT | https://litellm.ai |
| 127 | llmlingua | 0.2.2 | MIT License | https://github.com/microsoft/LLMLingua |
| 128 | lm_eval | 0.4.11 | MIT | https://github.com/EleutherAI/lm-evaluation-harness |
| 129 | loguru | 0.7.3 | MIT License | https://github.com/Delgan/loguru |
| 130 | lxml | 6.0.2 | BSD-3-Clause | https://lxml.de/ |
| 131 | lxml_html_clean | 0.4.4 | BSD-3-Clause | https://github.com/fedora-python/lxml_html_clean/ |
| 132 | magika | 0.6.2 | Apache Software License | https://github.com/google/magika |
| 133 | markdown-it-py | 4.0.0 | MIT License | https://github.com/executablebooks/markdown-it-py |
| 134 | maturin | 1.13.3 | MIT OR Apache-2.0 | https://github.com/pyo3/maturin |
| 135 | mbstrdecoder | 1.1.4 | MIT License | https://github.com/thombashi/mbstrdecoder |
| 136 | mcp | 1.26.0 | MIT License | https://modelcontextprotocol.io |
| 137 | mdurl | 0.1.2 | MIT License | https://github.com/executablebooks/mdurl |
| 138 | ml_dtypes | 0.5.4 | Apache-2.0 | https://github.com/jax-ml/ml_dtypes |
| 139 | mmh3 | 5.2.1 | MIT License | https://pypi.org/project/mmh3/ |
| 140 | modal | 1.5.0 | Apache-2.0 | https://modal.com |
| 141 | more-itertools | 10.8.0 | MIT | https://github.com/more-itertools/more-itertools |
| 142 | mpmath | 1.3.0 | BSD License | http://mpmath.org/ |
| 143 | multidict | 6.7.1 | Apache License 2.0 | https://github.com/aio-libs/multidict |
| 144 | multiprocess | 0.70.18 | BSD License | https://github.com/uqfoundation/multiprocess |
| 145 | murmurhash | 1.0.15 | MIT License | https://github.com/explosion/murmurhash |
| 146 | mypy | 1.19.1 | MIT License | https://www.mypy-lang.org/ |
| 147 | mypy_extensions | 1.1.0 | MIT | https://github.com/python/mypy_extensions |
| 148 | networkx | 3.6.1 | BSD-3-Clause | https://networkx.org/ |
| 149 | nh3 | 0.3.2 | MIT | UNKNOWN |
| 150 | nltk | 3.9.3 | Apache Software License | https://www.nltk.org/ |
| 151 | nodeenv | 1.10.0 | BSD License | https://github.com/ekalinin/nodeenv |
| 152 | numpy | 2.4.1 | BSD-3-Clause AND 0BSD AND MIT AND Zlib AND CC0-1.0 | https://numpy.org |
| 153 | ollama | 0.6.1 | MIT | https://ollama.com |
| 154 | onnx | 1.21.0 | Apache-2.0 | https://onnx.ai/ |
| 155 | onnxconverter-common | 1.16.0 | MIT License | https://github.com/microsoft/onnxconverter-common |
| 156 | onnxruntime | 1.23.2 | MIT License | https://onnxruntime.ai |
| 157 | openai | 2.41.0 | Apache Software License | https://github.com/openai/openai-python |
| 158 | opencv-python | 4.13.0.92 | Apache Software License | https://github.com/opencv/opencv-python |
| 159 | opentelemetry-api | 1.39.1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-api |
| 160 | opentelemetry-exporter-otlp-proto-common | 1.39.1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-common |
| 161 | opentelemetry-exporter-otlp-proto-http | 1.39.1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-http |
| 162 | opentelemetry-instrumentation | 0.63b1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/opentelemetry-instrumentation |
| 163 | opentelemetry-instrumentation-threading | 0.63b1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python-contrib/instrumentation/opentelemetry-instrumentation-threading |
| 164 | opentelemetry-proto | 1.39.1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-proto |
| 165 | opentelemetry-sdk | 1.39.1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-sdk |
| 166 | opentelemetry-semantic-conventions | 0.60b1 | Apache-2.0 | https://github.com/open-telemetry/opentelemetry-python/tree/main/opentelemetry-semantic-conventions |
| 167 | orjson | 3.11.5 | Apache-2.0 OR MIT | https://github.com/ijl/orjson |
| 168 | ormsgpack | 1.12.2 | Apache-2.0 OR MIT | https://github.com/ormsgpack/ormsgpack |
| 169 | packaging | 25.0 | Apache Software License; BSD License | https://github.com/pypa/packaging |
| 170 | pandas | 3.0.0 | BSD License | https://pandas.pydata.org |
| 171 | pathspec | 1.0.4 | Mozilla Public License 2.0 (MPL 2.0) | https://python-path-specification.readthedocs.io/en/latest/index.html |
| 172 | pathvalidate | 3.3.1 | MIT License | https://github.com/thombashi/pathvalidate |
| 173 | phonenumbers | 9.0.27 | Apache-2.0 | https://github.com/daviddrysdale/python-phonenumbers |
| 174 | pillow | 12.1.0 | MIT-CMU | https://python-pillow.github.io |
| 175 | platformdirs | 4.5.1 | MIT | https://github.com/tox-dev/platformdirs |
| 176 | pluggy | 1.6.0 | MIT License | UNKNOWN |
| 177 | portalocker | 3.2.0 | BSD-3-Clause | https://github.com/wolph/portalocker/ |
| 178 | pre_commit | 4.5.1 | MIT | https://github.com/pre-commit/pre-commit |
| 179 | preshed | 3.0.13 | MIT License | https://github.com/explosion/preshed |
| 180 | presidio_analyzer | 2.2.362 | MIT | https://github.com/Microsoft/presidio |
| 181 | presidio_anonymizer | 2.2.362 | MIT | https://github.com/Microsoft/presidio |
| 182 | propcache | 0.4.1 | Apache Software License | https://github.com/aio-libs/propcache |
| 183 | proto-plus | 1.28.0 | Apache Software License | https://github.com/googleapis/google-cloud-python/tree/main/packages/proto-plus |
| 184 | protobuf | 6.33.6 | 3-Clause BSD License | https://developers.google.com/protocol-buffers/ |
| 185 | psutil | 7.2.1 | BSD-3-Clause | https://github.com/giampaolo/psutil |
| 186 | pyOpenSSL | 26.3.0 | Apache Software License | https://pyopenssl.org/ |
| 187 | py_rust_stemmers | 0.1.5 | UNKNOWN | UNKNOWN |
| 188 | pyarrow | 23.0.0 | Apache-2.0 | https://arrow.apache.org/ |
| 189 | pyasn1 | 0.6.3 | BSD-2-Clause | https://github.com/pyasn1/pyasn1 |
| 190 | pyasn1_modules | 0.4.2 | BSD License | https://github.com/pyasn1/pyasn1-modules |
| 191 | pyclipper | 1.4.0 | MIT License | https://github.com/fonttools/pyclipper |
| 192 | pycparser | 3.0 | BSD-3-Clause | https://github.com/eliben/pycparser |
| 193 | pydantic | 2.12.5 | MIT | https://github.com/pydantic/pydantic |
| 194 | pydantic-settings | 2.12.0 | MIT | https://github.com/pydantic/pydantic-settings |
| 195 | pydantic_core | 2.41.5 | MIT | https://github.com/pydantic/pydantic-core |
| 196 | pyproject_hooks | 1.2.0 | MIT License | https://github.com/pypa/pyproject-hooks |
| 197 | pytablewriter | 1.2.1 | MIT License | https://github.com/thombashi/pytablewriter |
| 198 | pytest | 9.0.2 | MIT | https://docs.pytest.org/en/latest/ |
| 199 | pytest-asyncio | 1.3.0 | Apache-2.0 | https://github.com/pytest-dev/pytest-asyncio |
| 200 | pytest-cov | 7.0.0 | MIT | https://pytest-cov.readthedocs.io/en/latest/changelog.html |
| 201 | pytest-split | 0.11.0 | MIT License | https://jerry-git.github.io/pytest-split |
| 202 | python-dateutil | 2.9.0.post0 | Apache Software License; BSD License | https://github.com/dateutil/dateutil |
| 203 | python-dotenv | 1.2.1 | BSD-3-Clause | https://github.com/theskumar/python-dotenv |
| 204 | python-multipart | 0.0.22 | Apache-2.0 | https://github.com/Kludex/python-multipart |
| 205 | pytz | 2026.1.post1 | MIT License | http://pythonhosted.org/pytz |
| 206 | rapidocr-onnxruntime | 1.4.4 | Apache-2.0 | https://github.com/RapidAI/RapidOCR |
| 207 | readme_renderer | 44.0 | Apache Software License | UNKNOWN |
| 208 | redis | 7.3.0 | MIT | https://github.com/redis/redis-py |
| 209 | referencing | 0.37.0 | MIT | https://github.com/python-jsonschema/referencing |
| 210 | regex | 2026.1.15 | Apache-2.0 AND CNRI-Python | https://github.com/mrabarnett/mrab-regex |
| 211 | requests | 2.34.2 | Apache Software License | https://github.com/psf/requests |
| 212 | requests-file | 3.0.1 | Apache Software License | https://codeberg.org/dashea/requests-file |
| 213 | requests-toolbelt | 1.0.0 | Apache Software License | https://toolbelt.readthedocs.io/ |
| 214 | rfc3986 | 2.0.0 | Apache Software License | http://rfc3986.readthedocs.io |
| 215 | rich | 14.3.1 | MIT License | https://github.com/Textualize/rich |
| 216 | rouge_score | 0.1.2 | Apache Software License | https://github.com/google-research/google-research/tree/master/rouge |
| 217 | rpds-py | 0.30.0 | MIT | https://github.com/crate-py/rpds |
| 218 | ruff | 0.14.14 | MIT License | https://docs.astral.sh/ruff |
| 219 | s3transfer | 0.18.0 | Apache Software License | https://github.com/boto/s3transfer |
| 220 | sacrebleu | 2.6.0 | Apache-2.0 | https://github.com/mjpost/sacrebleu |
| 221 | safetensors | 0.7.0 | Apache Software License | https://github.com/huggingface/safetensors |
| 222 | scikit-learn | 1.8.0 | BSD-3-Clause | https://scikit-learn.org |
| 223 | scipy | 1.17.0 | BSD License | https://scipy.org/ |
| 224 | semantic-router | 0.1.12 | MIT | UNKNOWN |
| 225 | sentence-transformers | 5.2.1 | Apache Software License | https://www.SBERT.net |
| 226 | sentencepiece | 0.2.1 | UNKNOWN | https://github.com/google/sentencepiece |
| 227 | shapely | 2.1.2 | BSD License | https://github.com/shapely/shapely |
| 228 | shellingham | 1.5.4 | ISC License (ISCL) | https://github.com/sarugaku/shellingham |
| 229 | six | 1.17.0 | MIT License | https://github.com/benjaminp/six |
| 230 | smart_open | 7.5.1 | MIT License | https://github.com/piskvorky/smart_open |
| 231 | smmap | 5.0.2 | BSD License | https://github.com/gitpython-developers/smmap |
| 232 | sniffio | 1.3.1 | Apache Software License; MIT License | https://github.com/python-trio/sniffio |
| 233 | sortedcontainers | 2.4.0 | Apache Software License | http://www.grantjenks.com/docs/sortedcontainers/ |
| 234 | spacy | 3.8.14 | MIT License | https://spacy.io |
| 235 | spacy-legacy | 3.0.12 | MIT License | https://spacy.io |
| 236 | spacy-loggers | 1.0.5 | MIT | https://github.com/explosion/spacy-loggers |
| 237 | sqlite-vec | 0.1.6 | MIT License, Apache License, Version 2.0 | https://TODO.com |
| 238 | sqlitedict | 2.1.0 | Apache Software License | https://github.com/piskvorky/sqlitedict |
| 239 | srsly | 2.5.3 | MIT License | https://github.com/explosion/srsly |
| 240 | sse-starlette | 3.2.0 | BSD-3-Clause | https://github.com/sysid/sse-starlette |
| 241 | starlette | 0.50.0 | BSD-3-Clause | https://github.com/Kludex/starlette |
| 242 | strands-agents | 1.42.0 | Apache Software License | https://github.com/strands-agents/sdk-python |
| 243 | sympy | 1.14.0 | BSD License | https://sympy.org |
| 244 | synchronicity | 0.12.3 | Apache Software License | UNKNOWN |
| 245 | tabledata | 1.3.4 | MIT License | https://github.com/thombashi/tabledata |
| 246 | tabulate | 0.10.0 | MIT | https://github.com/astanin/python-tabulate |
| 247 | tcolorpy | 0.1.7 | MIT License | https://github.com/thombashi/tcolorpy |
| 248 | tenacity | 9.1.2 | Apache Software License | https://github.com/jd/tenacity |
| 249 | thinc | 8.3.13 | MIT License | https://github.com/explosion/thinc |
| 250 | threadpoolctl | 3.6.0 | BSD License | https://github.com/joblib/threadpoolctl |
| 251 | tiktoken | 0.12.0 | MIT License Copyright (c) 2022 OpenAI, Shantanu Jain Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | https://github.com/openai/tiktoken |
| 252 | tld | 0.13.1 | MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later | https://github.com/barseghyanartur/tld |
| 253 | tldextract | 5.3.1 | BSD-3-Clause | https://github.com/john-kurkowski/tldextract |
| 254 | tokenizers | 0.22.2 | Apache Software License | https://github.com/huggingface/tokenizers |
| 255 | toml | 0.10.2 | MIT License | https://github.com/uiri/toml |
| 256 | torch | 2.10.0 | BSD-3-Clause | https://pytorch.org |
| 257 | tornado | 6.5.4 | Apache Software License | http://www.tornadoweb.org/ |
| 258 | tqdm | 4.67.1 | MIT License; Mozilla Public License 2.0 (MPL 2.0) | https://tqdm.github.io |
| 259 | trafilatura | 2.0.0 | Apache Software License | https://trafilatura.readthedocs.io |
| 260 | transformers | 5.0.0 | Apache 2.0 License | https://github.com/huggingface/transformers |
| 261 | tree-sitter | 0.25.2 | MIT License | https://tree-sitter.github.io/tree-sitter/ |
| 262 | tree-sitter-c-sharp | 0.23.1 | MIT License | https://github.com/tree-sitter/tree-sitter-c-sharp |
| 263 | tree-sitter-embedded-template | 0.25.0 | MIT | https://github.com/tree-sitter/tree-sitter-embedded-template |
| 264 | tree-sitter-language-pack | 0.13.0 | MIT OR Apache-2.0 | https://github.com/Goldziher/tree-sitter-language-pack |
| 265 | tree-sitter-yaml | 0.7.2 | MIT | https://github.com/tree-sitter-grammars/tree-sitter-yaml |
| 266 | twine | 6.2.0 | Apache-2.0 | https://twine.readthedocs.io/ |
| 267 | typepy | 1.3.4 | MIT License | https://github.com/thombashi/typepy |
| 268 | typer | 0.25.1 | MIT | https://github.com/fastapi/typer |
| 269 | typer-slim | 0.21.1 | MIT | https://github.com/fastapi/typer |
| 270 | types-certifi | 2021.10.8.3 | Apache Software License | https://github.com/python/typeshed |
| 271 | types-toml | 0.10.8.20260518 | Apache-2.0 | https://github.com/python/typeshed |
| 272 | typing-inspection | 0.4.2 | MIT | https://github.com/pydantic/typing-inspection |
| 273 | typing_extensions | 4.15.0 | PSF-2.0 | https://github.com/python/typing_extensions |
| 274 | tzlocal | 5.3.1 | MIT License | https://github.com/regebro/tzlocal/blob/master/CHANGES.txt |
| 275 | urllib3 | 2.6.3 | MIT | https://github.com/urllib3/urllib3/blob/main/CHANGES.rst |
| 276 | uuid_utils | 0.14.0 | BSD License | https://github.com/aminalaee/uuid-utils |
| 277 | uvicorn | 0.40.0 | BSD-3-Clause | https://uvicorn.dev/ |
| 278 | virtualenv | 20.36.1 | MIT | https://github.com/pypa/virtualenv |
| 279 | wasabi | 1.1.3 | MIT | https://github.com/explosion/wasabi |
| 280 | watchdog | 6.0.0 | Apache Software License | https://github.com/gorakhargosh/watchdog |
| 281 | watchfiles | 1.2.0 | MIT License | https://github.com/samuelcolvin/watchfiles |
| 282 | weasel | 1.0.0 | MIT License | https://github.com/explosion/weasel/ |
| 283 | websockets | 16.0 | BSD-3-Clause | https://github.com/python-websockets/websockets |
| 284 | word2number | 1.1 | The MIT License (MIT) Copyright (c) 2016 Akshay Nagpal (https://github.com/akshaynagpal) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | https://github.com/akshaynagpal/w2n |
| 285 | wrapt | 1.17.3 | BSD License | https://github.com/GrahamDumpleton/wrapt |
| 286 | xxhash | 3.6.0 | BSD License | https://github.com/ifduyue/python-xxhash |
| 287 | yarl | 1.22.0 | Apache Software License | https://github.com/aio-libs/yarl |
| 288 | zipp | 3.23.0 | MIT | https://github.com/jaraco/zipp |
| 289 | zstandard | 0.25.0 | BSD-3-Clause | https://github.com/indygreg/python-zstandard |