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>). For long-lived tickets and audits, also log the CRS-001 record_hash (sha256:...) as the durable content address. Paste either into the ticket, then:

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

You can also reference a CRS-001 record by its record_hash (e.g. sha256:...) for content-addressed lookups:

fabra context show sha256:<record_hash>
fabra context verify sha256:<record_hash>

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 + context_id (and record_hash / content_hash when CRS-001 storage is enabled)
  • Fabra persists a CRS-001 Context Record (receipt) and exposes it at GET /v1/record/<record_ref> where <record_ref> is ctx_... or sha256:....
  • 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.

Privacy & Sensitive Data

By default, Fabra persists raw context content (the assembled prompt/context string) inside CRS-001 records and the legacy context_log table. Treat Context Records like production logs: do not include secrets (API keys, tokens, passwords) and be intentional about PII.

If you need lineage/metadata without storing raw text, set:

export FABRA_RECORD_INCLUDE_CONTENT=0

This “privacy mode” stores an empty string for content in persisted records (and therefore in GET /v1/context/{context_id}), while still capturing lineage and integrity hashes for tamper-evidence on the remaining fields.

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_ref_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_ref_json(
    receipt.context_id,
    record_hash=receipt.integrity.record_hash,
    content_hash=receipt.integrity.content_hash,
    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.3.1.tar.gz (919.2 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.3.1-py3-none-any.whl (225.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fabra_ai-2.3.1.tar.gz
  • Upload date:
  • Size: 919.2 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.3.1.tar.gz
Algorithm Hash digest
SHA256 82338eeb54aa9883e0779f45aa3f187120dc0467eef77009ae9f939a8e039f05
MD5 89aa991c9fb529ebb8d65e9acbd3fe23
BLAKE2b-256 c048cd2e55a0ad69963377c28fe8d0e54ed9d74b4313574125e34d67b4598506

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabra_ai-2.3.1.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.3.1-py3-none-any.whl.

File metadata

  • Download URL: fabra_ai-2.3.1-py3-none-any.whl
  • Upload date:
  • Size: 225.6 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.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 37f74b147d31aa5095ac29e82120349133b40b3d9b02588e8bff2d4e78c02ad4
MD5 16196aecd84ce9d950c42df58bd67d3c
BLAKE2b-256 d369298b044e5a4feeb3eb321ffbf2a803627a98a0ccd8bff25da8f4762df8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabra_ai-2.3.1-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