Skip to main content

Heroku for ML Features

Project description

Meridian

The Context Store for LLMs & ML Features

PyPI version CI Status Release Status License Python Version


Define RAG pipelines and ML features in Python. Get production retrieval, vector search, and training data for free.

Stop fighting the infrastructure tax. Meridian takes you from "Notebook Prototype" to "Production RAG" in 30 seconds.


📚 Documentation | 🤖 Context Store | 🛠️ Testing Guide


🚀 Why Meridian?

Most feature stores are built for the 1% of companies (Uber, DoorDash) with platform teams. They require Kubernetes, Spark, and complex microservices.

Meridian is built for the rest of us.

Feature The "Old Way" The Meridian Way
Config 500 lines of YAML Python Decorators (@feature)
Infra Kubernetes + Spark Runs on your Laptop (DuckDB)
Serving Complex API Gateway meridian serve file.py
RAG Context LangChain Spaghetti Declarative @context
Philosophy "Google Scale" "Get it Shipped"

⚡ The 30-Second Quickstart

1. Install

pip install "meridian-oss[ui]"

2. Define Features & Context (features.py)

from meridian.core import FeatureStore, entity, feature
from meridian.context import context, ContextItem
from meridian.retrieval import retriever
import random

store = FeatureStore()

@entity(store)
class User:
    user_id: str

# 1. THE FEATURE STORE (Structured Data)
@feature(entity=User, refresh="daily", materialize=True)
def user_tier(user_id: str) -> str:
    # Imagine a DB lookup here; we'll simulate it for speed.
    return "premium" if hash(user_id) % 2 == 0 else "free"

# 2. THE CONTEXT STORE (Unstructured Data)
@retriever(store)
async def find_docs(query: str):
    # In production, this uses pgvector.
    # Here we simulate a semantic search result.
    return [{"content": "Meridian bridges the gap between ML features and RAG.", "score": 0.9}]

# 3. THE UNIFICATION (Context Assembly)
@context(store)
async def build_prompt(user_id: str, query: str):
    # Fetch feature and docs in parallel
    tier = await store.get_feature("user_tier", user_id)
    docs = await find_docs(query)

    return [
        ContextItem(f"User is {tier}. Adjust tone accordingly.", priority=0),
        ContextItem(str(docs), priority=1)
    ]

3. Use in Your App

import asyncio
from features import build_prompt

async def main():
    ctx = await build_prompt(user_id="u1", query="How does Meridian help?")
    print(ctx.items)
    # Output: [ContextItem(content='User is free...', ...), ContextItem(content='[{"content":...}]', ...)]

if __name__ == "__main__":
    asyncio.run(main())

4. Serve (Optional) Expose features via HTTP for non-Python apps:

meridian serve features.py
# 🚀 Server running on http://localhost:8000

🛠️ Key Capabilities

Meridian bridges the gap between AI Engineers building RAG agents and ML Engineers training models.

🤖 For AI Engineers (The Context Store)

  • Vector Search & RAG: Built-in pgvector support. Index documents and retrieve them semantically with @retriever.
  • Token Budgets: Automatically assemble prompt contexts (@context) that fit within your LLM's context window, prioritizing high-value information.
  • Semantic Cache: Cache expensive LLM computations or retrieval results.
  • 📖 Read the Context Store Guide

📊 For ML Engineers (The Feature Store)

  • Point-in-Time Correctness: Zero data leakage. Uses ASOF JOIN (DuckDB) and LATERAL JOIN (Postgres) to fetch feature values exactly as they existed at inference time.
  • Hybrid Logic: Mix Python (for complex Pandas/Numpy transformations) and SQL (for heavy database aggregations) in the same pipeline.
  • Event-Driven: Trigger feature updates instantly from Redis Streams (trigger="transaction_event").

🏗️ Architecture

Meridian scales with you from Laptop to Production.

graph TD
    subgraph Dev [Tier 1: Local Development]
        A[Laptop] -->|Uses| B(DuckDB)
        A -->|Uses| C(In-Memory Dict)
        style Dev fill:#e1f5fe,stroke:#01579b
    end

    subgraph Prod [Tier 2: Production]
        D[API Pods] -->|Async| E[(Postgres + pgvector)]
        D -->|Async| F[(Redis)]
        style Prod fill:#fff3e0,stroke:#ff6f00
    end

    Switch{MERIDIAN_ENV} -->|development| Dev
    Switch -->|production| Prod

🏭 Production Configuration

Deploy to production by simply setting environment variables. No code changes required.

# Security
MERIDIAN_API_KEY=change_me_to_something_secure

# Data Stores
MERIDIAN_REDIS_URL=redis://redis-host:6379
MERIDIAN_POSTGRES_URL=postgresql+asyncpg://user:pass@db-host:5432/meridian  # pragma: allowlist secret

# LLM Providers (for RAG)
OPENAI_API_KEY=sk-...

🗺️ Roadmap

  • Phase 1: Core API, DuckDB/Postgres support, Redis caching, FastAPI serving, PIT Correctness, Async I/O.
  • Phase 2 (v1.2.0): Context Store, RAG infrastructure, pgvector, Event-Driven features, Time Travel.
  • Phase 2.x (v1.2.5): Release Polish, CLI improvements, Timezone robustness.
  • 🚧 Phase 3: Drift detection, RBAC, and multi-region support.

🤝 Contributing

We love contributions! This is a community-driven project. Please read our CONTRIBUTING.md to get started.


Meridian © 2025

Apache 2.0 License

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

meridian_oss-1.2.5.tar.gz (466.8 kB view details)

Uploaded Source

Built Distribution

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

meridian_oss-1.2.5-py3-none-any.whl (60.2 kB view details)

Uploaded Python 3

File details

Details for the file meridian_oss-1.2.5.tar.gz.

File metadata

  • Download URL: meridian_oss-1.2.5.tar.gz
  • Upload date:
  • Size: 466.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for meridian_oss-1.2.5.tar.gz
Algorithm Hash digest
SHA256 8eb006e65da7f67af7463370fd294cafa6890905a1967b212f060965075c53a1
MD5 c43a1e5979443f72470470c7e05ebe7b
BLAKE2b-256 78f00f5510dc0d27c7238e15ed3f87182ba8fc6a355c8f90b58bfcb02d146e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for meridian_oss-1.2.5.tar.gz:

Publisher: release.yml on davidahmann/meridian

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

File details

Details for the file meridian_oss-1.2.5-py3-none-any.whl.

File metadata

  • Download URL: meridian_oss-1.2.5-py3-none-any.whl
  • Upload date:
  • Size: 60.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for meridian_oss-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 86564a6e5b576a5be7ba41875a8fbfd0a22a8b3fc8d1d657812f8de75f10f6e1
MD5 e68b2811d11a970cbf01f85f62f6c3a4
BLAKE2b-256 cf1f796b57d97ffa35b931c9314095a44a02e0f4ccfff9b4d5fe3e1cd583186c

See more details on using hashes here.

Provenance

The following attestation bundles were made for meridian_oss-1.2.5-py3-none-any.whl:

Publisher: release.yml on davidahmann/meridian

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