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.3): 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.3.tar.gz (466.7 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.3-py3-none-any.whl (60.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: meridian_oss-1.2.3.tar.gz
  • Upload date:
  • Size: 466.7 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.3.tar.gz
Algorithm Hash digest
SHA256 a23db37d373b198a6ad562147304ae54184c2fe61798b7ee39af3431bca76eb7
MD5 f0b3d135a0314f26b400d9eace29d8ca
BLAKE2b-256 ca6c389e00c8a7da502dfb92317337878993ee86d30550c0688539dd0a30ebd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for meridian_oss-1.2.3.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.3-py3-none-any.whl.

File metadata

  • Download URL: meridian_oss-1.2.3-py3-none-any.whl
  • Upload date:
  • Size: 60.1 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d56b7bbd9c702cfdafb8f456c07a2ae0677d0f503125fe7fec199e8525997bf2
MD5 40a05eee82d2364e21a9f5bcec38aca7
BLAKE2b-256 be1e86c1114474649f8b4ee4b8bfb38d53b645f77e5365ad97c5fb3c5c5b4215

See more details on using hashes here.

Provenance

The following attestation bundles were made for meridian_oss-1.2.3-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