Skip to main content

Fuzzy join DataFrames using LLM scoring and embedding retrieval

Project description

llm-join

PyPI GitHub

The pandas join that understands what your data means.

pd.merge joins on exact values. llm-join joins on meaning using embedding retrieval to find candidates and an LLM you already have to decide if they match.

from llm_join import fuzzy_join

result = fuzzy_join(
    df1, df2,
    left_on="vendor", right_on="supplier_name",
    llm_fn=my_llm, embed_fn=my_embed,
    context="company names",
    llm_concurrency=10,
    embed_concurrency=20,
)

Table of Contents


The Problem

You have two DataFrames. Same data, different text:

Your system Their system
Goldman Sachs & Co. The Goldman Sachs Group Inc
Sony WH-1000XM5 SONY-WH1000XM5-BLK
MSFT Q4 license renewal Microsoft Enterprise Agreement Q4-2024
Python programming Python (language)

pd.merge returns nothing. Fuzzy string matching gets the wrong answer. You end up writing custom logic or doing it by hand.

llm-join solves this in one function call.


Why llm-join

vs. pd.merge

Exact string match only. Fails on any variation in naming.

vs. fuzzy string matching (fuzzywuzzy, rapidfuzz)

Character similarity, not meaning. "iPhone 14 Pro" vs "iPhone 14 Pro Max" scores high but they are different products. "CABLE-USBC-200CM-BLK" vs "USB-C charging cable 2m black" scores near zero even though they are the same item.

vs. embedding similarity alone

Fast and cheap, but no reasoning. Can't explain why two values match or catch false positives confidently.

llm-join

Embedding retrieval narrows the field cheaply by finding semantically similar candidates. Your model scores only the plausible candidates with context you provide. Accurate where it matters, fast where it doesn't.

Works with any provider: OpenAI, Azure, Anthropic, Bedrock, Ollama, or any private model. No data leaves your infrastructure beyond what your own providers already see.


Real-World Use Cases

Domain Left table Right table Problem
Supply chain Buyer product description Supplier SKU Match products across 50+ vendor catalogs
Finance Expense report payee GL account / vendor master Reconcile transactions automatically
Legal / M&A Contract party name Corporate registry Identify true legal entity
Compliance Customer name OFAC sanctions list Sanctions screening at scale
Retail / e-commerce Marketplace product listing Master product catalog Deduplicate listings across 50+ sellers
Logistics Shipment description Harmonized tariff code Auto-classify goods at customs
Research Author name Citation database Disambiguate authors
Government Vendor name Tax registry Consolidate procurement spend
Real estate Raw address input Property records DB Standardize and match addresses
Pharma Drug compound names in adverse event reports WHO drug dictionary (WHO-DD) Standardize brand, generic, and abbreviation variants "Tylenol 500mg", "acetaminophen", "APAP" all resolve to the same WHO entry for pharmacovigilance signal detection
HR Job title in offer letter or LinkedIn import Internal job architecture / grade catalog Normalize "Senior Software Engineer II", "Sr. SWE", "L5 Engineer" to canonical job families for compensation benchmarking and workforce analytics

Install

pip install llm-join

Or from source:

git clone https://github.com/adityabalki/llm-join.git
cd llm-join
pip install -e .

Quick Start

import pandas as pd
import numpy as np
import openai
from llm_join import fuzzy_join

df1 = pd.DataFrame({
    "vendor": ["Goldman Sachs & Co.", "Amazon Web Services", "Microsoft Corp"],
    "spend": [1_200_000, 890_000, 340_000]
})

df2 = pd.DataFrame({
    "supplier_name": ["The Goldman Sachs Group Inc", "Amazon.com Inc.", "Microsoft Corporation"],
    "category": ["Finance", "Cloud", "Software"]
})

client = openai.OpenAI()

def my_llm(prompt):
    return client.chat.completions.create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": prompt}]
    ).choices[0].message.content

def my_embed(texts):
    response = client.embeddings.create(model="text-embedding-3-small", input=texts)
    return np.array([d.embedding for d in response.data], dtype="float32")

result = fuzzy_join(
    df1, df2,
    left_on="vendor",
    right_on="supplier_name",
    llm_fn=my_llm,
    embed_fn=my_embed,
    context="company names — match legal entity variants and abbreviations",
    llm_concurrency=10,   # how many LLM calls to run in parallel
    embed_concurrency=20,
    how="inner",
)

print(result)
vendor spend supplier_name category
Goldman Sachs & Co. 1,200,000 The Goldman Sachs Group Inc Finance
Amazon Web Services 890,000 Amazon.com Inc. Cloud
Microsoft Corp 340,000 Microsoft Corporation Software

How It Works

Example: A retailer's purchase orders use plain English product names. Their supplier sends a catalog with SKU codes. pd.merge matches nothing. llm-join bridges the gap.

orders_df = pd.DataFrame({"product_name": [
    "USB-C charging cable 2m black",
    "ergonomic mesh office chair",
    "27-inch 4K monitor",
], "qty": [500, 30, 12]})

catalog_df = pd.DataFrame({"sku": [
    "CABLE-USBC-200CM-BLK",
    "CABLE-USBA-200CM-BLK",
    "CHAIR-MESH-ERG-ADJUSTABLE",
    "CHAIR-TASK-FIXED-BLK",
    "MON-27-4K-IPS-HDMI2",
], "unit_price": [8.99, 6.49, 349.00, 189.00, 429.00]})

result = fuzzy_join(
    orders_df, catalog_df,
    left_on="product_name", right_on="sku",
    llm_fn=my_llm, embed_fn=my_embed,
    context="procurement match buyer product descriptions to supplier SKU codes",
    top_k=3, llm_threshold=0.7,
    llm_concurrency=10,
    embed_concurrency=20,
)

Step 1 — Embed both columns

Every value gets converted to a vector.

Value Meaning captured
"USB-C charging cable 2m black" cable / USB-C / length / color
"ergonomic mesh office chair" seating / ergonomic / mesh
"27-inch 4K monitor" display / size / resolution
"CABLE-USBC-200CM-BLK" cable / USB-C / 200cm / black
"CHAIR-MESH-ERG-ADJUSTABLE" seating / mesh / ergonomic
"MON-27-4K-IPS-HDMI2" display / 27in / 4K

Step 2 — Retrieval finds top-K candidates per row (no LLM)

For each left row, the retriever returns the top_k best candidates from the right table. By default this uses embedding retrieval — FAISS embedding similarity (see Retrieval Methods). Everything outside the top_k is eliminated, no LLM call needed.

The walkthrough below shows embedding scores for clarity.

Query: "USB-C charging cable 2m black" → top_k=3

Rank Candidate Embed Score Reaches LLM?
0 CABLE-USBC-200CM-BLK 0.89 yes
1 CABLE-USBA-200CM-BLK 0.71 yes
2 CHAIR-TASK-FIXED-BLK 0.34 yes (shares "BLK")
CHAIR-MESH-ERG-ADJUSTABLE 0.11 eliminated
MON-27-4K-IPS-HDMI2 0.08 eliminated

Result: 3 LLM calls instead of 3 × 5 = 15 pair-by-pair calls.

Step 3 — One LLM call per left row scores all candidates

All top-K candidates go into a single prompt. The LLM scores each one and returns JSON one API call per row, all candidates scored together.

Prompt sent for "USB-C charging cable 2m black":

Context: procurement match buyer product descriptions to supplier SKU codes

LEFT: "USB-C charging cable 2m black"

Score each candidate (0.0–1.0):
0. CABLE-USBC-200CM-BLK
1. CABLE-USBA-200CM-BLK
2. CHAIR-TASK-FIXED-BLK

LLM response:

[
  {"index": 0, "score": 0.97, "reasoning": "USBC = USB-C, 200CM = 2m, BLK = black. Exact match on all three specs."},
  {"index": 1, "score": 0.38, "reasoning": "Correct length and color but USBA is USB-A, not USB-C. Wrong connector type."},
  {"index": 2, "score": 0.04, "reasoning": "This is a chair SKU. No relation to a cable."}
]

Apply llm_threshold=0.7:

Candidate LLM Score Decision
CABLE-USBC-200CM-BLK 0.97 best match joined
CABLE-USBA-200CM-BLK 0.38 below llm_threshold
CHAIR-TASK-FIXED-BLK 0.04 below llm_threshold

Step 4 — Merge matched rows

print(result)
product_name qty sku unit_price
USB-C charging cable 2m black 500 CABLE-USBC-200CM-BLK 8.99
ergonomic mesh office chair 30 CHAIR-MESH-ERG-ADJUSTABLE 349.00
27-inch 4K monitor 12 MON-27-4K-IPS-HDMI2 429.00

The LLM correctly rejected CABLE-USBA-200CM-BLK (wrong connector) even though the embedding scored it 0.71. That's where the LLM earns its cost.


Retrieval Methods

llm-join supports three retrieval methods for the first-stage candidate filter:

Method What it scores Strengths
embedding (default) Semantic similarity (cosine on vectors) Paraphrases, synonyms, multilingual
bm25 Lexical / token overlap (TF-IDF based) Rare tokens, codes, acronyms, exact identifiers
hybrid Both, fused via Reciprocal Rank Fusion (RRF) Catches both semantic and lexical signals

Set via the retrieval parameter.

fuzzy_join(..., retrieval="embedding") # default — semantic similarity
fuzzy_join(..., retrieval="hybrid")    # opt-in — embeddings + BM25 fused via RRF
fuzzy_join(..., retrieval="bm25")      # lexical only

What is BM25?

BM25 (Best Match 25) is a classic lexical scoring algorithm. It ranks documents by how well query tokens overlap, weighted by:

  • Term frequency — how often a query word appears in the document
  • Inverse document frequency (IDF) — how rare the word is in the corpus (rare = more meaningful)
  • Document length normalization — short focused matches outrank long noisy ones

No embeddings, no neural nets. Pure statistics. Fast, deterministic.


Why embeddings alone aren't enough

Embedding models trained on web text know common acronyms (USAUnited States, ~0.85 cosine) but miss private or rare ones:

Query Right column Embedding cosine
APAC Asia Pacific ~0.65–0.75
BMS Bristol-Myers Squibb ~0.30
CABLE-USBC-200CM-BLK USB-C cable 2m black ~0.45
TYL-500 Tylenol 500mg ~0.20
INR-FX-HEDGE-2024Q4 Indian Rupee FX Hedge Q4 2024 ~0.40

For these, the correct candidate may not even reach the top-K embedding list — the LLM never sees it.

BM25 catches them via literal token overlap. APAC in the query matches APAC in APAC region office regardless of vector space.


Example: when hybrid wins

Corpus (right table):

supplier_name
ABC Holding Co
ABC Holdings Pvt Ltd
ABC Pvt Limited (NSE)
ABC Capital Markets
XYZ Corp

Query (left): "ABC Pvt Ltd"

retrieval="embedding" top-5:

  • ABC Holding Co (0.81)
  • ABC Capital Markets (0.74)
  • ABC Holdings Pvt Ltd (0.72)
  • XYZ Corp (0.31)
  • ABC Pvt Limited (NSE) (0.29) ← weak vector, ranked last

LLM sees the correct match ABC Pvt Limited (NSE) at rank 4. Often gets dropped if top_k=3.

retrieval="bm25" top-5:

  • ABC Pvt Limited (NSE) (BM25 high — both Pvt and Ltd are rare tokens)
  • ABC Holdings Pvt Ltd
  • ABC Holding Co
  • ABC Capital Markets
  • XYZ Corp (rank 0 — no overlap)

retrieval="hybrid" top-5 (RRF fusion):

  • ABC Holdings Pvt Ltd (appears in BOTH lists → boosted)
  • ABC Pvt Limited (NSE) (BM25 rank-1 → surfaces)
  • ABC Holding Co (embed rank-0)
  • ABC Capital Markets
  • XYZ Corp

LLM now sees the right answer at rank 2 instead of rank 4 or missing entirely.


Tie-breaking in hybrid

When two candidates have identical RRF scores, llm-join prefers:

  1. Higher RRF score
  2. Appears in both lists over single-list candidate
  3. Higher embedding score

This rewards candidates with dual evidence (lexical + semantic).


BM25 stopwords

By default bm25_stopwords=None — all tokens are kept. Set bm25_stopwords="en" only for pure natural-language fields. For codes / drug names / company names (where short words like A or of may carry meaning), leave it off.

fuzzy_join(..., retrieval="hybrid", bm25_stopwords="en")  # for free-text fields

Usage

Basic join

result = fuzzy_join(
    orders_df, catalog_df,
    left_on="product_name",
    right_on="sku",
    llm_fn=my_llm,
    embed_fn=my_embed,
    context="procurement match buyer product descriptions to supplier SKU codes",
    llm_concurrency=10,
    embed_concurrency=20,
)

With domain context

Give the LLM more detail about each column to improve accuracy.

result = fuzzy_join(
    orders_df, catalog_df,
    left_on="product_name",
    right_on="sku",
    llm_fn=my_llm,
    embed_fn=my_embed,
    context="procurement match buyer product descriptions to supplier SKU codes",
    column_context={
        "product_name": "plain English product description written by a buyer",
        "sku": "supplier stock keeping unit code, typically uppercase with hyphens",
    },
    llm_concurrency=10,
    embed_concurrency=20,
)

See why matches were made

result = fuzzy_join(
    df1, df2,
    left_on="vendor",
    right_on="supplier_name",
    llm_fn=my_llm,
    embed_fn=my_embed,
    context="company names match legal entity variants",
    llm_concurrency=10,
    embed_concurrency=20,
    return_reasoning=True,
)

print(result[["vendor", "supplier_name", "_llm_score", "_llm_reasoning", "_match_method", "_llm_candidates"]])
vendor supplier_name _llm_score _llm_reasoning _match_method _llm_candidates
Goldman Sachs & Co. The Goldman Sachs Group Inc 0.97 same firm, legal name variant llm [{"candidate": "The Goldman Sachs...", "embed_score": 0.94}, ...]

_llm_candidates shows exactly which candidates were sent to the LLM and their embedding scores useful for tuning top_k and threshold.

Multi-column join key

Pass a list to left_on or right_on values are concatenated automatically. Works for any number of columns.

# Match on product name + category combined
result = fuzzy_join(
    orders_df, catalog_df,
    left_on=["product_name", "category"],
    right_on="sku_description",
    llm_fn=my_llm,
    embed_fn=my_embed,
    context="procurement match buyer product + category to supplier SKU description",
    llm_concurrency=10,
    embed_concurrency=20,
)

Match all results

By default, only the best-scoring match above threshold is returned. Set match_all=True when one left value legitimately maps to multiple right values.

# "aspirin" should match all its known names
result = fuzzy_join(
    drugs_df, synonyms_df,
    left_on="generic_name", right_on="name",
    llm_fn=my_llm, embed_fn=my_embed,
    context="pharmaceutical drug names match generics to all known synonyms",
    llm_concurrency=10,
    embed_concurrency=20,
    match_all=True,
    top_k=10,
)
generic_name name _llm_score
aspirin acetylsalicylic acid 0.98
aspirin Bayer Aspirin Tablet 0.95
aspirin aspirin 100mg tablet 0.91

Chaining multiple joins

Each fuzzy_join returns a regular DataFrame pipe them like pd.merge.

# Step 1 — match vendors
step1 = fuzzy_join(
    df1, df2,
    left_on="vendor", right_on="supplier_name",
    llm_fn=my_llm, embed_fn=my_embed,
    context="company names — match legal entity variants",
    llm_concurrency=10,
    embed_concurrency=20,
    how="left", return_reasoning=True,
)

# Step 2 — match products on result of step 1
result = fuzzy_join(
    step1, df3,
    left_on="product", right_on="catalog_item",
    llm_fn=my_llm, embed_fn=my_embed,
    context="product names — match internal descriptions to catalog items",
    llm_concurrency=10,
    embed_concurrency=20,
    how="left", return_reasoning=True,
)

Works with Any LLM

Pass any callable that takes a prompt string and returns a string.

# OpenAI
import openai
client = openai.OpenAI()
def my_llm(prompt):
    return client.chat.completions.create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": prompt}]
    ).choices[0].message.content

# Anthropic
import anthropic
client = anthropic.Anthropic()
def my_llm(prompt):
    return client.messages.create(
        model="claude-opus-4-5", max_tokens=512,
        messages=[{"role": "user", "content": prompt}]
    ).content[0].text

# Google Gemini
import google.generativeai as genai
model = genai.GenerativeModel("gemini-2.0-flash")
def my_llm(prompt):
    return model.generate_content(prompt).text

# Ollama (local, free)
import ollama
def my_llm(prompt):
    return ollama.chat(
        model="llama3.2", messages=[{"role": "user", "content": prompt}]
    )["message"]["content"]

# Async LLM (uses asyncio path automatically)
async def my_llm(prompt):
    response = await async_client.chat.completions.create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": prompt}]
    )
    return response.choices[0].message.content

Works with Any Embedding Function

Pass any callable (list[str]) -> np.ndarray (shape [n, dim], dtype float32).

import numpy as np

# OpenAI
import openai
client = openai.OpenAI()
def my_embed(texts):
    response = client.embeddings.create(model="text-embedding-3-small", input=texts)
    return np.array([d.embedding for d in response.data], dtype="float32")

# Cohere
import cohere
co = cohere.Client("YOUR_KEY")
def my_embed(texts):
    response = co.embed(texts=texts, model="embed-english-v3.0", input_type="search_document")
    return np.array(response.embeddings, dtype="float32")

# sentence-transformers (local, no API key needed)
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("all-MiniLM-L6-v2")
def my_embed(texts):
    return model.encode(texts, convert_to_numpy=True).astype("float32")

Cost & Scale

If you sent every possible pair to the LLM:

Left rows Right rows Pairs to score Cost (gpt-4o-mini)
1,000 10,000 10,000,000 ~$150
10,000 100,000 1,000,000,000 ~$15,000
100,000 1,000,000 100,000,000,000 not feasible

llm-join avoids this with a two stage pipeline.

Stage 1 — Retrieval narrows the search (cheap)

Embedding retrieval returns the top-K best candidates per row. Mostly local math — embedding API calls for vectors, then FAISS ANN search.

Input pairs 10,000 × 100,000 = 1,000,000,000
After FAISS (top_k=5) 50,000 candidate pairs
Eliminated for free 99.995% of all pairs

Stage 2 — LLM scores only the shortlist (accurate)

Your LLM sees a small batch of plausible candidates not the full cross product. One call per left row, all candidates scored in that call.

Setup LLM calls Estimated cost
10k × 100k, top_k=5 50,000 ~$0.75
10k × 100k, top_k=3 30,000 ~$0.45
10k × 100k, embed_skip_threshold=0.95 ~5,000 ~$0.08

Cost controls

result = fuzzy_join(
    df1, df2,
    left_on="vendor", right_on="supplier",
    llm_fn=my_llm, embed_fn=my_embed,
    context="...",
    llm_concurrency=10,
    embed_concurrency=20,
    top_k=3,                    # fewer candidates = fewer LLM tokens per row
    embed_skip_threshold=0.95,  # skip LLM entirely if embed score is high enough
    max_llm_calls=1000,         # hard cap — warns and returns partial result if hit
)

Performance

Tune llm_concurrency and embed_concurrency to your API rate limits. Embeddings are usually cheaper and faster, so push them higher.

# Sequential, for debugging or strict rate limits
fuzzy_join(..., llm_concurrency=1, embed_concurrency=1)

# Sensible defaults for most APIs
fuzzy_join(..., llm_concurrency=10, embed_concurrency=20)

# High throughput, check rate limits first
fuzzy_join(..., llm_concurrency=50, embed_concurrency=100)
  • Sync function (def my_llm / def my_embed) → ThreadPoolExecutor
  • Async function (async def my_llm / async def my_embed) → asyncio + semaphore

The library auto-detects sync vs async for both llm_fn and embed_fn.

If an LLM call fails after all retries, the top embedding match is used as fallback.


Best Practices for Speed

For large joins (10k+ rows), follow this pattern:

  1. Use async functions. Pass async llm_fn and embed_fn so the library uses asyncio.Semaphore instead of threads.
  2. Reuse one HTTP client. Create a single httpx.AsyncClient outside the function. Avoid async with httpx.AsyncClient() inside embed_fn or llm_fn — that creates a new TCP/TLS handshake per call.
  3. Raise batch_size (default 32 is conservative). For example, OpenAI accepts up to 2048 texts per embed call. Limit varies by provider — check your provider's docs.
  4. Set embed_concurrency=50100. Embeddings are cheap and fast; push concurrency higher than LLM.
  5. Set embed_skip_threshold=0.95. Skips LLM for near-identical pairs. Cuts LLM calls 30–60% on most datasets.
  6. Use verbose=1 so you can see progress and adjust knobs.

Reference notebook with the full async pattern: examples/fast_async_join.py


Checkpoint & Resume

For large joins that may be interrupted, pass checkpoint_path to save progress after every LLM call.

# Enable checkpointing — saves after every LLM call
result = fuzzy_join(
    df1, df2,
    left_on="vendor", right_on="supplier",
    llm_fn=my_llm, embed_fn=my_embed,
    context="company names",
    llm_concurrency=10, embed_concurrency=20,
    checkpoint_path="./vendor_join.ckpt.json",
)
# If the process is interrupted, rerun the same line.
# llm-join loads the checkpoint, skips completed rows, resumes from where it stopped.
# The checkpoint file is deleted automatically on success.
  • Progress is saved atomically after each LLM result (sequential, threaded, and async paths all supported).
  • If the file contains a corrupt or version-mismatched checkpoint, a warning is emitted and the join starts fresh.
  • Parent directory must exist at call time (raises ValueError immediately if not).

Dry Run

Pass dry_run=True to validate parameters and estimate LLM calls and tokens without making any API calls.

result = fuzzy_join(
    df1, df2,
    left_on="vendor", right_on="supplier",
    llm_fn=my_llm, embed_fn=my_embed,
    context="company names",
    llm_concurrency=10, embed_concurrency=20,
    dry_run=True,
)
# prints to stderr:
# dry_run: no validation errors
#   left rows: 5000 (unique: 800)
#   right rows: 12000 (unique: 2400)
#   LLM calls: 0-800  (0 if embed_skip_threshold fires; 800 worst case)
#   tokens/call (est.): ~210
#   total input tokens (est.): 0-168000

print(result.is_valid)            # True
print(result.n_llm_calls_max)     # 800
print(result.avg_tokens_per_call) # 210

Catches bad parameters too — no API calls made:

from llm_join import fuzzy_join, DryRunResult

result = fuzzy_join(
    df1, df2,
    left_on="typo_col",   # column doesn't exist
    right_on="supplier",
    llm_fn=my_llm, embed_fn=my_embed,
    context="",           # empty context
    llm_concurrency=10, embed_concurrency=20,
    dry_run=True,
)
print(result.validation_errors)
# ["Column 'typo_col' not found in df1", "context must not be empty — ..."]

Returns a DryRunResult object (also exported from llm_join). All validation errors are collected — not fail-fast.


Observability

Every fuzzy_join call prints a one-line summary to stderr at the end. You always know what happened.

llm-join: 5000 left (deduped to 800) | 12000 right (deduped to 2400) | 200 embed_skipped | 600 LLM | 5 rate-limited | 0 failed | 24.3s total

Set verbose=1 to add tqdm progress bars during embedding and LLM scoring, plus per-batch retry detail.

fuzzy_join(..., verbose=1)

Set verbose=2 to also log every match as it resolves.

Row: "Goldman Sachs & Co." -> "The Goldman Sachs Group Inc" [score=0.970, embed_rank=0, llm]
Row: "Sony WH-1000XM5" -> "SONY-WH1000XM5-BLK" [score=0.950, embed_rank=0, llm]

Rate-limit errors (429s) are detected across providers (OpenAI, Anthropic, Azure) and counted separately in the summary.


Features

  • Any provider — OpenAI, Azure, Anthropic, Bedrock, Vertex, Ollama, or any private model. Sync and async supported.
  • Enterprise friendly — User supply the LLM and embedding calls. Your data stays within your own infrastructure and chosen providers.
  • Embedding retrieval — semantic similarity via FAISS (default). Toggle with retrieval="embedding" (default) / "bm25" (lexical) / "hybrid" (opt-in: adds BM25 lexical scoring via RRF for rare token matches).
  • Two-stage pipeline — first stage eliminates 99%+ of pairs; your model scores only the shortlist
  • Domain contextcontext and column_context inject column level descriptions into every prompt
  • Full join semanticsinner, left, right, full same as pd.merge
  • Multi-column keys — pass a list to left_on / right_on
  • No duplicate output rows — one best match per left row; ties broken by retrieval rank
  • Reasoning outputreturn_reasoning=True adds _llm_score, _llm_reasoning, _embed_rank, _match_method, _llm_candidates
  • Cost controlstop_k, embed_skip_threshold, max_llm_calls
  • Parallel embeddingembed_concurrency runs batches of embed_fn calls in parallel. Auto-detects sync vs async function.
  • Observability — one-line summary always prints at the end (LLM calls, embed skips, rate limits, failures, elapsed time). verbose=1 adds tqdm progress bars; verbose=2 adds per-record logs.
  • Multi-match modematch_all=True returns all candidates above threshold
  • Parallel scoringllm_concurrency controls how many calls run at once
  • Retry with backoff — failed calls retry at 1s, 2s, 4s; falls back to top embed match on total failure
  • MIT license
  • Checkpoint & resumecheckpoint_path saves progress after every LLM call; re-run the same line to resume from where it stopped. File deleted automatically on success.
  • Dry rundry_run=True validates params and estimates LLM calls and tokens without calling llm_fn or embed_fn.

Parameters

Parameter Default Description
left_on required Column name(s) in df1. Pass a list for multi-column keys any number of columns supported.
right_on required Column name(s) in df2. Pass a list for multi-column keys any number of columns supported.
llm_fn required Your LLM function. Sync: (str) -> str. Async: async (str) -> str.
embed_fn required Your embedding function. (list[str]) -> np.ndarray of shape [n, dim], dtype float32.
context required Describe what the columns represent and what kind of match to make. Injected into every LLM prompt.
llm_concurrency required How many LLM calls to run in parallel. 1 = sequential. Start with 10 and adjust based on your API rate limit.
embed_concurrency required How many embed_fn batches to run in parallel. Library auto-detects sync vs async embed_fn. Sync uses ThreadPoolExecutor, async uses asyncio.Semaphore.
retrieval "embedding" First-stage candidate filter. "embedding" (default, semantic), "bm25" (lexical), "hybrid" (both via RRF). See Retrieval Methods.
bm25_stopwords None Stopword list for BM25 tokenization. None keeps all tokens (default, best for codes/names). Pass "en" for English natural-language fields, or a custom list.
column_context {} Per-column descriptions {"col": "description"} adds extra detail to the prompt beyond context.
top_k 5 How many embedding candidates to retrieve per left row before LLM scoring.
llm_threshold 0.7 Minimum LLM score (0–1) to accept a match. Rows where LLM scores below this are not joined.
how "inner" Join type: inner / left / right / full (full outer join).
embed_skip_threshold 1.0 Skip LLM when top embed similarity is at or above this value. Default 1.0 means only identical vectors (exact same text) skip LLM. Lower it (e.g. 0.92) to skip LLM for near-identical matches and save cost.
max_llm_calls None Hard cap on total LLM calls. Emits a warning and returns a partial result if hit.
max_retries 3 How many times to retry a failed LLM call (exponential backoff). Set 0 to disable. Falls back to top embed candidate on total failure.
batch_size 32 How many texts per embed_fn call. Raise for large datasets (e.g. OpenAI accepts up to 2048; limit varies by provider).
match_all False Return all candidates above threshold, not just the best. Use when one left value maps to multiple right values.
return_reasoning False Add debug columns: _llm_score, _llm_reasoning, _embed_rank, _match_method, _llm_candidates.
verbose 0 Logging level. 0: silent (one-line summary at end still prints). 1: tqdm progress bars + per-batch failure detail. 2: also per-record log line per match.
dry_run False If True, validate params and estimate LLM calls and tokens. Returns DryRunResult, never calls llm_fn or embed_fn.
checkpoint_path None Path to checkpoint file. Progress saved after each LLM call. On re-run with same path, skips completed rows. File deleted on success.

Known Issues

numpy and faiss version conflict. faiss-cpu requires numpy<2. If your environment has numpy>=2, FAISS will fail to import with errors like numpy.core.multiarray failed to import or ImportError: numpy.core.multiarray failed to import.

Fix: downgrade numpy in your environment.

pip install "numpy<2"

If you need numpy 2.x for other packages, run llm-join in a separate environment.


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

llm_join-0.6.0.tar.gz (38.7 kB view details)

Uploaded Source

Built Distribution

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

llm_join-0.6.0-py3-none-any.whl (32.5 kB view details)

Uploaded Python 3

File details

Details for the file llm_join-0.6.0.tar.gz.

File metadata

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

File hashes

Hashes for llm_join-0.6.0.tar.gz
Algorithm Hash digest
SHA256 8143181d8c0016cff1fa061f44e0bad89cd5b5efc7180ef45608fc8295622706
MD5 0b703de6eca7ca0ec7e72c968553bb62
BLAKE2b-256 4d7fe4ec30fdb27c949c9f86be4ff53e255538e76be7df2228fc1f1cb7af8603

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_join-0.6.0.tar.gz:

Publisher: ci.yml on adityabalki/llm-join

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

File details

Details for the file llm_join-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: llm_join-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for llm_join-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 36c12987ffd598d640bfa8cbe677dac7c9bcc3ede6c0060591668ae1ad18926c
MD5 024bff9290d186083108c85747558b2a
BLAKE2b-256 7c3dd392facadb6f607c3b3b6366ae8d721c2cd367cc93b46fa703cb2481bbd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_join-0.6.0-py3-none-any.whl:

Publisher: ci.yml on adityabalki/llm-join

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