Skip to main content

Context infrastructure for AI applications

Project description

Fabra

Context Records for LLM incidents.

Capture what the model saw as a durable artifact you can replay, verify, and diff.
record -> replay -> diff

PyPI version License Python Version


When An LLM Incident Happens

  • Support shares a screenshot.
  • Engineering tries to reconstruct prompts, retrieval, features, and runtime state.
  • Nobody can answer, precisely and repeatably: what did it see, what changed, why did it answer that way?

Fabra's unit of evidence is a context_id (UUID or ctx_<UUID>). Paste it into the ticket, then:

fabra context show <context_id>
fabra context verify <context_id>
fabra context diff <context_id_A> <context_id_B>

Quickstart (No Keys, No Docker)

pip install fabra-ai
fabra demo

fabra demo starts a local server, makes a test request, and prints a working context_id plus the next commands to run.

By default, Context Records are stored durably in DuckDB at ~/.fabra/fabra.duckdb (override with FABRA_DUCKDB_PATH).

How It Works (One Screen)

  • You define features and @context functions in a Python file.
  • fabra serve <file.py> loads that file, starts a FastAPI server, and serves:
    • GET /v1/features/<name> for feature values (with freshness_ms)
    • POST /v1/context/<name> for assembled context + a context_id
  • Fabra persists a CRS-001 Context Record (receipt) and exposes it at GET /v1/record/<context_id>.
  • Under incident pressure you run fabra context show/verify/diff from the context_id.

Details: docs/how-it-works.md

Requirements

  • Python >= 3.9
  • pip (or uv, optional)
  • curl (used in quickstart verification commands)
  • Optional:
    • Node.js (only for fabra ui)
    • Docker (only for Docker-based examples / local production stack)

Help and diagnostics:

fabra --help
fabra context --help
fabra doctor

Production defaults (no fake receipts)

In FABRA_ENV=production, Fabra defaults to FABRA_EVIDENCE_MODE=required: if CRS-001 record persistence fails, the request fails (no context_id returned).

Already using LangChain or calling OpenAI directly? Add receipts without changing your app architecture:

  • docs/exporters-and-adapters.md (LangChain-style callbacks, OpenAI wrapper, logs/OTEL)

Events/workers (optional): docs/events-and-workers.md


What A Context Record Is

A Context Record is a durable artifact for an AI request: assembled content plus lineage (features, retrieval, freshness decisions), and optional integrity metadata.

Create a context_id locally using the shipped example:

fabra serve examples/demo_context.py

In another terminal:

curl -fsS -X POST http://127.0.0.1:8000/v1/context/chat_context \
  -H "Content-Type: application/json" \
  -d '{"user_id":"u1","query":"test"}'

Core workflow (from a context_id):

fabra context show <context_id>
fabra context verify <context_id>
fabra context diff <context_id_A> <context_id_B>
fabra context export <context_id> --bundle -o incident_bundle.zip

incident_bundle.zip includes the exported record (<context_id>.json) plus manifest.json with stored vs computed hashes.

Drop-In Receipts (No Keys)

If you already build prompts but don’t use @context yet, emit a verifiable receipt:

from fabra.receipts import ReceiptRecorder
from fabra.exporters.logging import emit_context_id_json

prompt = "system: ...\nuser: ..."
recorder = ReceiptRecorder()
receipt = recorder.record_sync(
    context_function="my_llm_call",
    content=prompt,
    inputs={"model": "gpt-4.1-mini"},
)
emit_context_id_json(receipt.context_id, source="my-service", ticket="INC-1234")

Two Entry Points

ML Engineers (Features)

Define features in Python and serve them over HTTP.

from fabra import FeatureStore, entity, feature
from datetime import timedelta

store = FeatureStore()

@entity(store)
class User:
    user_id: str

@feature(entity=User, refresh=timedelta(hours=1))
def purchase_count(user_id: str) -> int:
    # Replace with a real DB call
    return 47
fabra serve features.py   # or: fabra serve examples/demo_features.py
curl localhost:8000/v1/features/purchase_count?entity_id=u123
# {"value": 47, "freshness_ms": 0, "served_from": "online"}

AI Engineers (Context)

Assemble prompts with features + retrieval, with lineage and budgets.

from fabra import FeatureStore
from fabra.context import context, ContextItem

store = FeatureStore()

@context(store, max_tokens=4000, freshness_sla="5m")
async def build_prompt(user_id: str, query: str) -> list[ContextItem]:
    # Replace with your feature calls and retriever / RAG call
    tier = "premium"
    docs = "..."
    return [
        ContextItem(content=f"User tier: {tier}", priority=1),
        ContextItem(content=docs, priority=2),
    ]

ctx = await build_prompt("user_123", "question")
print(ctx.id)
print(ctx.lineage)

CLI (Most Used)

fabra demo                          # start demo + print a context_id
fabra context show <id>             # inspect a record (or best-effort legacy view)
fabra context verify <id>           # verify CRS-001 hashes (fails if unavailable)
fabra context diff <a> <b>          # compare two contexts
fabra context diff <a> <b> --local  # diff two CRS-001 receipts from DuckDB (no server required)
fabra context pack <id> -o incident.zip                # zip: context.json + summary.md
fabra context pack <id> --baseline <id0> -o incident.zip  # adds diff.patch (content unified diff)
fabra context export <id>           # export json/yaml
fabra context export <id> --bundle  # zip bundle for incident/audit
fabra doctor                        # local diagnostics
fabra serve <file.py>               # run server for examples/your code
fabra deploy fly|cloudrun|ecs        # generate deployment config
fabra ui <file.py>                  # local UI (requires Node.js)

Note: fabra ui requires Node.js. If you’re running from source, install UI deps with cd src/fabra/ui-next && npm install.


What Fabra Is / Isn’t

Fabra is Python-first infrastructure for inference-time evidence (Context Records) and for serving features and context over HTTP. Define features and context in code (not YAML), run locally with DuckDB, and scale to Postgres/Redis in production. No Kubernetes or Kafka is required to adopt Fabra.

Fabra is not:

  • an agent framework
  • a monitoring dashboard
  • a no-code builder

See docs/quickstart.md, docs/context-record-spec.md, and docs/comparisons.md for details.


Try in Browser · Quickstart · Docs

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

fabra_ai-2.2.5.tar.gz (898.8 kB view details)

Uploaded Source

Built Distribution

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

fabra_ai-2.2.5-py3-none-any.whl (222.2 kB view details)

Uploaded Python 3

File details

Details for the file fabra_ai-2.2.5.tar.gz.

File metadata

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

File hashes

Hashes for fabra_ai-2.2.5.tar.gz
Algorithm Hash digest
SHA256 5ad1940de762edfdda24960f830a245e978ddbc84e47c0d0cbc1ad804c0cdd02
MD5 de4e4394923206ef366301f58f885b20
BLAKE2b-256 f8c9422203b714f5fdf7ec7d270339bdc78897e1818e9067f729fdf4851810c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabra_ai-2.2.5.tar.gz:

Publisher: release.yml on davidahmann/fabra

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

File details

Details for the file fabra_ai-2.2.5-py3-none-any.whl.

File metadata

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

File hashes

Hashes for fabra_ai-2.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 2b457508935306655603800c366e9263af1a3b36c7929a699ceb1e5721bc2918
MD5 07e9bdf3d836c984488cc6a34dfb8d3c
BLAKE2b-256 3727175842049ab9b64d44d7acd842603b086504e29e65e94f7abf6440e44810

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabra_ai-2.2.5-py3-none-any.whl:

Publisher: release.yml on davidahmann/fabra

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