Skip to main content

LangChain VectorStore for MySQL 9's native VECTOR type — works with ShannonBase, self-hosted MySQL, and MySQL HeatWave.

Project description

langchain-shannonbase

PyPI CI Python License: MIT

A LangChain VectorStore backed by MySQL 9's native VECTOR type. If your data already lives in MySQL, you can do retrieval without bolting a separate vector database onto your stack.

It works against three things that share the same VECTOR / STRING_TO_VECTOR / DISTANCE surface:

Backend What it is Good for
ShannonBase open-source "MySQL for AI" local dev and self-hosting, no subscription
MySQL 9 vanilla self-hosted MySQL you already run MySQL
MySQL HeatWave Oracle's managed MySQL production on OCI

Why it exists

Before this, if your data was in MySQL your LangChain options were thin. The one MySQL vector store in the ecosystem is locked to Google Cloud SQL, and ShannonBase's LangChain integration was on their wishlist but nobody had built it. This is the plain, self-hostable version: no cloud lock-in, no extra service to run.

It passes LangChain's standard vector-store integration suite, so it behaves like any other store you'd drop into a chain.

When to use this (and when not to)

ShannonBase can also do the whole retrieve-and-generate loop in one SQL call with sys.ML_RAG. If you're all-in on ShannonBase and happy in SQL, that's the simpler path and you probably don't need this.

Reach for this package when you're already building in LangChain: you want orchestration in Python, your own embeddings (OpenAI, a local model, whatever), or to plug MySQL into a chain or agent you've already got. Same engine underneath, different front door.

Install

pip install "langchain-shannonbase[mysql]"

The [mysql] extra pulls in the database driver. Leave it off if you only want the offline in-memory backend for tests.

Quickstart

from langchain_openai import OpenAIEmbeddings
from langchain_shannonbase import ShannonBaseVectorStore

store = ShannonBaseVectorStore(
    embedding=OpenAIEmbeddings(model="text-embedding-3-small"),
    table="documents",
    host="127.0.0.1", port=3306, user="root", password="", database="rag",
)

store.add_texts(
    ["Refunds are accepted within 30 days.", "Free shipping over $50."],
    metadatas=[{"topic": "refunds"}, {"topic": "shipping"}],
    ids=["1", "2"],
)

store.similarity_search("what's the return policy?", k=2)

The table is created on the first write, with an embedding VECTOR(n) column sized to your embedding model.

For a full doc-in to grounded-answer example, see examples/rag.py.

Filtering, MMR, scores, retriever

# restrict a search to matching metadata
store.similarity_search("policy?", k=2, filter={"topic": "refunds"})

# maximal marginal relevance, for hits that aren't near-duplicates of each other
store.max_marginal_relevance_search("policy?", k=3, fetch_k=20, lambda_mult=0.5)

# cosine similarity, or a normalized [0,1] relevance score, with each hit
store.similarity_search_with_score("return policy?", k=2)
store.similarity_search_with_relevance_scores("return policy?", k=2)

# search with an embedding you already have
store.similarity_search_by_vector(my_vector, k=2)

# fetch or delete specific rows by id
store.get_by_ids(["1"])
store.delete(ids=["2"])

# use it as a retriever in any chain
retriever = store.as_retriever(search_kwargs={"k": 3})

How it works

No extensions, just MySQL 9's built-in vector support:

CREATE TABLE documents (
  id VARCHAR(36) PRIMARY KEY,
  content TEXT,
  metadata JSON,
  embedding VECTOR(1536)
);
-- inserts go through STRING_TO_VECTOR('[...]')
-- search:  ORDER BY DISTANCE(embedding, STRING_TO_VECTOR('[...]'), 'COSINE') LIMIT k

Search returns the nearest rows as LangChain Documents, each with a score of 1 - distance. Cosine is the default; pass metric="dot" or metric="euclidean" if you'd rather.

Performance and scale

By default search is exact: a full DISTANCE scan that returns the true nearest neighbours, so recall is 100%. That's fine for thousands to low millions of vectors.

Past that, build an approximate IVF index so a search only scans a fraction of the table:

store.add_texts(my_docs)           # load your data first
store.build_index(n_lists=1000)    # k-means centroids + an indexed cluster column

store.similarity_search("query", k=5, nprobe=10)   # scans ~ nprobe / n_lists of the rows

It's k-means clustering plus an indexed cluster column, the same idea as pgvector's IVFFlat, done in application logic because MySQL 9 and ShannonBase don't have a native ANN index yet. Recall is approximate and rises with nprobe. On clustered data the trade is steep in your favour: in the offline tests, probing 1 of 8 lists keeps recall@10 at 1.0 while scanning ~12% of rows. Real recall depends on your data, so measure with bench/benchmark.py on your own set.

Connections are pooled (pool_size defaults to 5, override it in the constructor), so repeated queries reuse connections instead of reconnecting each time.

There's a latency benchmark in bench/benchmark.py if you want numbers for your own instance.

API

Method What it does
add_texts(texts, metadatas, ids) embed and upsert, returns the ids
similarity_search(query, k, filter=...) top-k Documents, optional metadata filter
similarity_search_with_score(query, k) same, with similarity scores
similarity_search_with_relevance_scores(query, k) with normalized [0,1] scores (cosine)
max_marginal_relevance_search(query, k, fetch_k, lambda_mult) diverse results
similarity_search_by_vector(embedding, k) search with a raw vector
get_by_ids(ids) fetch documents by id
delete(ids) remove by id
from_texts(texts, embedding, ...) build a populated store in one call
build_index(n_lists, nprobe) build an approximate IVF index for large tables

Metrics: cosine (default), dot, euclidean.

Testing

The logic is unit-tested offline against an in-memory backend, so you don't need a database to run the suite. That's also how the LangChain standard tests run in CI:

pip install -e ".[dev]"
pytest

There's a live round-trip test too, which runs against a real instance when you give it connection details:

export SB_HOST=127.0.0.1 SB_USER=root SB_PASSWORD=... SB_DATABASE=test
pytest tests/test_integration.py

For local development, ShannonBase gives you the MySQL 9 vector features without a HeatWave subscription.

Roadmap

Next on my list:

  • Native async via an async MySQL driver (async already works through LangChain's executor fallback)
  • Relevance scores for the dot and euclidean metrics (cosine is done)
  • A native ANN index if MySQL or ShannonBase ship one (the approximate IVF index works today via build_index)
  • Range and comparison operators in filters (only equality today)

Issues and PRs welcome.

Requirements

  • Python 3.9+
  • A MySQL-9-compatible database with the VECTOR type (ShannonBase, MySQL 9, or HeatWave)
  • mysql-connector-python (via the [mysql] extra)

License

MIT

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

langchain_shannonbase-0.4.0.tar.gz (17.4 kB view details)

Uploaded Source

Built Distribution

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

langchain_shannonbase-0.4.0-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file langchain_shannonbase-0.4.0.tar.gz.

File metadata

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

File hashes

Hashes for langchain_shannonbase-0.4.0.tar.gz
Algorithm Hash digest
SHA256 f4826cc3b722d97aecce38281c0d800c79b6db8860532bc0f60bffda2e1e6e79
MD5 fff3eb34c1687da8dd0cee1e00ff69f7
BLAKE2b-256 abb9cfd34409ab18ff97ef445e68d0f5a786d0f79b9f91f1c14f7d1e04f3e1f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_shannonbase-0.4.0.tar.gz:

Publisher: publish.yml on apoorva-01/langchain-shannonbase

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

File details

Details for the file langchain_shannonbase-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_shannonbase-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cdce16b1cd19b7f0d0a1c8e52569eec4fd534e0e0612697f6b3e7a6469db1caa
MD5 6b004db1e22d1d8dc65eff8824c54dc5
BLAKE2b-256 2ceb505d4fd12c42cfcb0751372ff2825bacfa7c687a315c7e225f74e2a30c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_shannonbase-0.4.0-py3-none-any.whl:

Publisher: publish.yml on apoorva-01/langchain-shannonbase

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