Skip to main content

CLI + MCP Server + Python Library for TurboQuant-based embedding compression

Project description

🧊 TurboQuant Tools

Compress AI embeddings by 5–7× with near-lossless quality.

CLI + Python Library + MCP Server for extreme vector compression using Google's TurboQuant (PolarQuant + QJL) — wrapped in a clean numpy-first API.

PyPI Python License Tests


🚀 Quick Start

pip install turboquant-tools

Compress a .npy embedding file:

turboquant compress embeddings.npy compressed.tq

Restore:

turboquant decompress compressed.tq restored.npy

Estimate savings:

turboquant estimate embeddings.npy --bits 3
# Original: 153.00 MB -> Compressed: 20.13 MB (7.60×, save 87%)

📦 What's Inside

Command / Tool Description
turboquant compress Compress .npy embeddings → .tq binary
turboquant decompress Restore .tq.npy
turboquant estimate Predict compression ratio before running
turboquant mcp-server MCP stdio server (AI agent integration)
Python compress() Compress numpy arrays in code
Python decompress() Restore in code

🔧 CLI Reference

compress

turboquant compress INPUT [OUTPUT] [OPTIONS]
Option Default Description
INPUT .npy file with float32 embeddings (n, d)
OUTPUT {stem}_tq{b}.tq Output .tq file
-b, --bits 3 Bit width (3 or 4)
-o, --output Alternative to positional OUTPUT
--no-qjl off Skip QJL correction (faster, lower quality)

Examples:

# Basic 3-bit compression
turboquant compress wiki_embeddings.npy wiki.tq

# 4-bit compression (higher quality)
turboquant compress embeddings.npy -b 4

# Fast mode (no QJL)
turboquant compress big_set.npy -b 3 --no-qjl

decompress

turboquant decompress INPUT [OUTPUT]

estimate

turboquant estimate INPUT [--bits N]

🐍 Python API

from turboquant_tools import compress, decompress, estimate_savings
import numpy as np

# Load or generate embeddings
vectors = np.random.randn(10000, 384).astype(np.float32)

# Compress (5–7× reduction)
compressed = compress(vectors, bits=3, use_qjl=False)
print(f"{vectors.nbytes / 1e6:.1f} MB → {compressed.nbytes / 1e6:.1f} MB ({compressed.memory.ratio:.1f}×)")

# Restore
restored = decompress(compressed)
print(f"MAE: {np.abs(restored - vectors).mean():.4f}")

# Estimate without running
est = estimate_savings(n_vectors=100000, dim=768, bits=3)
print(est)  # Original: X MB -> Compressed: Y MB (7.60×, save 87%)

CompressedVectors objects carry metadata:

compressed.n_vectors   # original count
compressed.dim         # original dimension
compressed.nbytes      # compressed size in bytes
compressed.memory      # MemoryBytes(original, compressed, ratio)
compressed.data        # raw .tq bytes (save to disk)

🤖 MCP Server (AI Agents)

TurboQuant Tools ships with a native MCP server for AI agent integration — works with any MCP-compatible host (Hermes, Claude Desktop, etc.).

Start

turboquant mcp-server

Register in your MCP client

Hermes Agent (~/.hermes/config.yaml):

mcp_servers:
  turboquant-tools:
    command: turboquant
    args: ["mcp-server"]
    enabled: true

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "turboquant-tools": {
      "command": "turboquant",
      "args": ["mcp-server"]
    }
  }
}

Available Tools

Tool Description
compress_embeddings Compress vectors in-memory
decompress_embeddings Restore compressed vectors
estimate_savings_mcp Predict compression ratio
embed_and_compress Embed texts via API + compress in one step

📊 Performance

Measured on random float32 embeddings (CPU, no GPU needed):

Vectors Dim Mode Original Compressed Ratio MAE
20 384 PolarQuant 3-bit 30 KB 10 KB 3.0× 2.6
20 384 TurboQuant (QJL) 30 KB 20 KB 1.5× 3.3
100K 384 PolarQuant 3-bit 153 MB 20 MB 7.6×

Use cases:

  • RAG pipelines — compress vector DB indexes
  • Edge devices — fit embeddings in limited RAM
  • Storage savings — reduce cloud costs for large vector stores
  • Memory-bound agents — compress context vectors on the fly

🧪 Development

git clone https://github.com/FreezeVII/turboquant-tools.git
cd turboquant-tools
pip install -e .
pip install pytest
pytest tests/

Run tests

pytest tests/ -v

🧱 How It Works

Two-stage compression inspired by Google's TurboQuant:

  1. PolarQuant — Random Hadamard rotation + scalar quantization to 3–4 bits per dimension. Captures magnitude and direction.
  2. QJL (optional) — Quantized Johnson-Lindenstrauss residual correction. Recovers high-frequency detail lost in PolarQuant.

Both stages run CPU-only via PyTorch — no GPU required. The .tq binary format uses a 30-byte header with magic bytes (TQT2) + packed indices and norms.

Under the hood this wraps OnlyTerp/turboquant, a reference PyTorch implementation.


📄 License

MIT — see LICENSE.


🙌 Contributing

PRs welcome! Ideas:

  • FAISS index compression (compress_faiss)
  • Onnx / numpy-only backend (no PyTorch dep)
  • Streaming compression for billion-scale datasets
  • Pre-built wheels for faster install

Made with 🧊 for the vector search community.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

turboquant_tools-0.1.0.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

turboquant_tools-0.1.0-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

Details for the file turboquant_tools-0.1.0.tar.gz.

File metadata

  • Download URL: turboquant_tools-0.1.0.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for turboquant_tools-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1b809fd606079f0202376667199d79174a30a592e87c1ad326060228b965a081
MD5 af3adee899707ab98a37e346f0f1c10b
BLAKE2b-256 dc40cd0a29ad4975b7daa418700cbbeaad5ae560501ddb2b6a162be17ed92762

See more details on using hashes here.

Provenance

The following attestation bundles were made for turboquant_tools-0.1.0.tar.gz:

Publisher: release.yml on FreezeVII/turboquant-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file turboquant_tools-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for turboquant_tools-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 994e2fe2f1df1a918ea8aa4d1041ec0e200ee19c7526c45c7564e6d6be2c5125
MD5 cc51a71be967aa8cb2ba0b98a458cd75
BLAKE2b-256 bfa3f6fa61770a683fbee6a1968eccbecf01bd73c8f42d0d9d540b31a53ec520

See more details on using hashes here.

Provenance

The following attestation bundles were made for turboquant_tools-0.1.0-py3-none-any.whl:

Publisher: release.yml on FreezeVII/turboquant-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page