Skip to main content

Vincio: the context engineering platform for AI applications. Compiles prompts, memory, retrieval, tools, schemas, and policies into optimized, validated, observable model-ready context packets.

Project description

Vincio — the context engineering platform for AI applications

The scarce resource is not the model. It is the context you feed it.

PyPI version CI Python 3.11+ Apache 2.0 467 tests passing Ruff Pydantic v2 Offline-first


Vincio is a Python platform for building context-engineered AI applications. It compiles prompts, memory, retrieval, tools, schemas, and policies into optimized, testable, observable, provider-neutral context packets — then validates and evaluates every output.

Most LLM frameworks help you call a model. Vincio governs the boundary between your application state and the model: what evidence is selected, how it is scored and budgeted, how it is rendered for cache reuse, and how the result is validated, measured, and traced. Named for Leonardo da Vinci — engineering and craft in equal measure.

Raw Input → Normalization → Objective Detection → Memory Selection
→ Retrieval Planning → Evidence Retrieval → Ranking + Distillation
→ Tool Planning → Context Compilation → Model Execution
→ Parsing + Validation → Evaluation + Guardrails → Trace + Learning Loop

Contents

Why Vincio · Install · 60-second quickstart · Features · Benchmarks · Comparison · Use cases · Examples · CLI · Architecture · Roadmap · Documentation

Why Vincio

Teams ship a prompt, watch it work, then spend months fighting everything around it: context that overflows the window, retrieved chunks that contradict each other, outputs that fail to parse, silent quality regressions, untraceable costs, and prompt-injection risk. These are not model problems — they are context problems.

Vincio treats context as a compiled artifact with a clear contract:

  • Deterministic where it matters. Security, permissions, and validation are enforced in code — never gated on model output. The same input compiles to the same packet.
  • Measured, not asserted. Every run is traced and costed; every change can be gated by an eval suite before it ships.
  • Provider-neutral. OpenAI, Anthropic, Google, Mistral, any OpenAI-compatible endpoint, or a deterministic offline mock — behind one interface.
  • One coherent model from input to output, instead of a bag of loosely-coupled utilities.

Install

pip install vincio                  # core — runs fully offline with the mock provider
pip install "vincio[openai]"        # + OpenAI provider
pip install "vincio[anthropic]"     # + Anthropic provider
pip install "vincio[all]"           # every optional integration

Python 3.11+. Core dependencies are just pydantic, httpx, pyyaml, and typing-extensions; every heavy integration (vector stores, OCR, server, OpenTelemetry, …) is an opt-in extra.

60-second quickstart

from vincio import ContextApp

app = ContextApp(name="docs_qa")
app.add_source("docs", path="./docs", retrieval="hybrid")
app.set_policy("answer_only_from_sources", True)

result = app.run("How do I configure SSO?")
print(result.output)      # the grounded answer
print(result.citations)   # evidence the answer actually cited
print(result.trace_id)    # every run produces a full trace
print(result.cost_usd)    # …and a cost

No API key? It runs offline out of the box on a deterministic mock provider that emits schema-valid output — so your whole pipeline (retrieval, validation, evals, traces) runs for real in CI.

Typed output

from pydantic import BaseModel
from vincio import ContextApp

class TicketClassification(BaseModel):
    label: str
    confidence: float
    reason: str

app = ContextApp(name="triage", output_schema=TicketClassification)
result = app.run("The dashboard crashes after login")

result.output.label        # → a validated TicketClassification instance

Agents with tools and memory

app = ContextApp(name="support_refunds", output_schema=RefundDecision)
app.add_memory(scope="user", strategy="semantic")
app.add_tool("billing_lookup", permissions=["billing:read"])
app.add_tool("refund_create", permissions=["billing:write"], approval_required=True)

agent = app.agent(max_steps=6)
result = agent.run("Customer asks for a refund on invoice INV-123.")

Multi-agent crews and durable graphs

from vincio.agents import interrupt

crew = app.crew(members=[
    {"name": "researcher", "goal": "gather the numbers", "keywords": ["find"]},
    {"name": "writer", "goal": "draft the recommendation"},
])
result = crew.run("Explain the Q3 refund trend")   # bounded, traced, blackboard-shared

graph = app.graph("review")                        # checkpointed in your own store
graph.add_node("analyze", analyze)
graph.add_node("approve", lambda s: {"ok": interrupt(s, "proceed?")})
graph.add_edge("analyze", "approve")
flow = graph.compile()
paused = flow.invoke({"doc": "msa.pdf"})           # pauses at the human gate
done = flow.resume(paused.thread_id, value=True)   # later — even after a restart

Reliability as a guarantee

from vincio import Signature, InputField, OutputField

class Triage(Signature):
    """Classify a support ticket."""
    ticket: str = InputField(desc="the raw ticket text")
    label: str = OutputField(desc="bug | billing | feature | other")
    confidence: float = OutputField()

result = app.predictor(Triage)(ticket="The export button 500s")  # typed + validated

app.add_rail(name="no_leaks", kind="safety", detectors=["pii", "secrets"], action="redact")
app.add_rail(name="on_topic", kind="topic", direction="input", blocked_topics=["legal advice"])
app.enable_self_correction(max_cycles=2, max_cost_usd=0.05)      # facts never invented
app.add_output_schema(BugReport, keywords=["bug", "crash"])       # multi-schema routing

async for event in app.astream("Extract the invoice"):
    if event.type == "partial_output" and event.valid_prefix is False:
        break   # streaming validation: stop paying for a doomed answer

Evaluation as a gate

from vincio.evals import Dataset, EvalRunner

dataset = Dataset.load("golden/support_triage.jsonl")
report = EvalRunner(app).run(dataset)
report.print_summary()     # groundedness, citation accuracy, schema validity, cost — with CI exit codes

Features

Vincio is organized into composable subsystems. Use the high-level ContextApp runtime, or reach for any engine directly.

Subsystem What it does
Prompt compiler Typed prompt ASTs with ${variables}, lint rules, cache-aware stable-prefix layout, versioning, hashing, diffing, variant generation.
Context compiler Scores every candidate (relevance, novelty, authority, freshness, provenance, token cost, leakage risk), deduplicates, resolves conflicts, compresses, and packs to a token budget — with an excluded-context report explaining every omission.
Retrieval (RAG) BM25 + dense + learned-sparse (SPLADE-style) + late-interaction (ColBERT-style MaxSim with PLAID-style compression) fused in one weighted RRF; query understanding (HyDE, multi-query, decomposition, step-back); sentence-window, parent-document/auto-merging, and contextual chunking; GraphRAG with community summaries and global/local routing; live indexes (upsert/TTL/migrations); entity-graph, multi-hop, and reasoning retrieval; citations.
Memory (0.4) Layered (session → episodic → semantic → tenant → graph) with a guarded write pipeline, confidence decay, contradiction resolution, and privacy scoping; remember/recall personalization over user/agent/session scopes, hybrid vector+graph recall, episodic→semantic consolidation with provenance, TTL + importance-weighted retention, audited GDPR-style edit/forget/export/erase, and a CI-gated memory eval harness.
Tools Permissioned registry (RBAC scopes + ABAC rules), schema derivation from type hints, sandboxing, reliability scoring, idempotent write-action guardrails with approval callbacks.
Agents Bounded DAG execution with planners (direct / static / dynamic / ReAct / plan-and-execute), critics, validators, human gates, and hard budget enforcement.
Orchestration (0.6) Multi-agent crews — roles, delegation, and a shared versioned blackboard — with per-agent budget shares and guaranteed termination; durable stateful graphs with checkpoints on your storage, resume, edit-and-resume, and time-travel forks; first-class human-in-the-loop interrupts; a declarative compose/pipe API with streaming node events; runtime backends exporting to LangGraph and the OpenAI Agents SDK.
Workflows Deterministic DAGs with retries, branching, parallelism, compensation, and approval gates that pause the run and resume without re-executing finished steps.
Structured output (0.7) Pydantic output contracts, provider-native constrained decoding with strict schema sanitization (robust-parser fallback everywhere else), streaming validation with mid-stream early abort, DSPy-style typed signatures (Signature / Predict) that feed the optimizer, bounded self-correcting loops with cost ceilings, multi-schema routing by task or content, and principled repair that fixes structure only — never invents facts.
Evaluation (0.5) Golden JSONL datasets, 25+ task / grounding / quality / safety / conversational / retrieval / operational metrics (faithfulness, answer relevance, hallucination with strict number checks, toxicity, bias, summarization, knowledge retention), deterministic / model / G-Eval judges with calibration, synthetic dataset generation with provenance, red-teaming judged by the security detectors, experiment tracking with statistical significance, regression gates, and baseline-diff reports — plus a pytest plugin (assert_eval / assert_grounded, packet/trace snapshots).
Optimization Prompt / context / routing / cache search driven by an eval-fitness function, with safety-gated promotion that blocks any candidate regressing schema validity or safety.
Observability (0.5) Every run yields a full trace span tree with sessions, threaded runs, user feedback, and eval scores on spans; JSONL and OpenTelemetry exporters (GenAI semantic conventions); a local viewer (TUI + self-contained static HTML export + visual trace diff); traces become eval datasets in one command; a versioned prompt registry with tags, diffs, rollback, and eval links; per-run cost tracking.
Security Deterministic PII / secret detection and redaction, prompt-injection defense, programmable input/output rails (topic / format / safety / custom) in the deterministic policy engine, RBAC / ABAC, tenant isolation, and a hash-chained audit log.
Storage Pluggable metadata (in-memory / SQLite / Postgres), blob, analytics (DuckDB), vector (Qdrant / pgvector), and graph (Neo4j) backends behind one factory.
Providers OpenAI, Anthropic, Google, Mistral, any OpenAI-compatible endpoint, and a deterministic offline mock — all async-first with sync wrappers, pooled transport, retries, failover, and in-flight request coalescing.
Performance (0.2) End-to-end streaming (astream + SSE) with incremental partial-JSON output, concurrent retrieval/memory/tool fan-out with cancellation propagation and hard latency deadlines, content-addressed compile/chunk/embedding caches, zero-copy (slim) context packets, and CI-gated VincioBench performance budgets.
Connectors (0.3) Pluggable data connectors — web, GitHub, SQL, S3, GCS, Notion, Confluence, Slack, plus custom via register_connector — feeding the document engine with full provenance: app.add_source("kb", connector=connect("github", repo="acme/handbook")).

Every extension point — providers, metrics, chunkers, rerankers, judges, validators, tools — accepts your own implementation via a registry.

Benchmarks

VincioBench ships in benchmarks/ and runs fully offline (deterministic provider + deterministic metrics) so results are reproducible. Each family compares the Vincio pipeline against a naive baseline. Representative results on the bundled reference corpus:

Family Metric Vincio Naive baseline
Context compression evidence tokens for the same task 216 1,175 (stuff-everything)
→ token reduction −81.6%
Output recovery malformed model outputs successfully parsed 5 / 5 3 / 5 (json.loads)
Security prompt-injection detection rate 100%
injection false-positive rate 0%
PII coverage 100%
Retrieval recall@3 / MRR (known-answer corpus) 1.00 / 1.00
per-mode recall@3 (sparse · late-interaction · PLAID · hybrid_full) 1.00 each
Memory preference recall · contradiction supersede · tenant isolation pass
Tools runtime overhead, p50 0.02 ms
Agents adversarial infinite-loop model bounded (budget) unbounded
Orchestration (0.6) crew over-budget termination · delegation recorded pass
graph interrupt→resume and fork-replay vs straight run identical state
Evals (0.5) metric agreement on labeled examples 100%
red-team detector coverage · guarded attack success 100% · 0% naive target: 85% attacks succeed
A/B significance (real shift detected / null ignored) pass
Reliability (0.7) invalid output detected mid-stream → tokens saved 98% 0% (validate at end)
self-correction recovery rate (bounded cycles) 3 / 3
rail catch rate · false positives on clean text 100% · 0
schema routing / classification accuracy 100%

Honest by design. These numbers come from a small, synthetic offline corpus and are meant to demonstrate the mechanisms, not to be quoted as universal gains. The context-compression hypothesis (a 20–40% reduction target) is measured per run, and VincioBench reports whether it was met on your data. Run python benchmarks/vinciobench.py against your own corpus — and trust only what that prints. See benchmarks/README.md.

How Vincio compares

Each ecosystem below is broad and capable in its own focus area. The table reflects built-in, in-library capabilities — not what is reachable by bolting on a separate product or SaaS.

Capability Vincio LangChain LlamaIndex DSPy Ragas
Scored, budgeted context compiler
Typed prompt AST + lint + cache layout
Hybrid (BM25 + dense) RAG
Sparse + late-interaction + GraphRAG in one fusion
Layered memory (decay, conflicts, scopes)
Permissioned tool registry (RBAC/ABAC)
Bounded agents + deterministic workflows
Durable graphs (checkpoint / resume / time-travel) + bounded crews
Structured output + structure-only repair
Built-in evals + CI gates
pytest assertions + red-teaming + synthetic data
Eval-driven optimization (gated promotion)
Native tracing + cost, no account needed
Sessions, feedback, prompt registry, trace viewer in-process
Deterministic security (PII / injection / audit)

✅ first-class in-library · ➖ partial or via a separate add-on/SaaS · ❌ not a focus. Reflects mid-2026; ecosystems evolve. Vincio is built to interoperate — wrap a LangChain component as a tool, feed LlamaIndex-parsed documents into a source, use a DSPy program as a provider, or register a Ragas metric with @register_metric. See the in-depth write-ups in docs/comparisons/.

Use cases

You want to… Reach for Example
Classify and route support tickets into typed labels typed output 01_support_triage.py
Answer questions over your docs with real citations hybrid RAG + grounding policy 02_document_qa.py
Review contracts clause-by-clause end-to-end context app 03_contract_review.py
Extract structured fields from invoices structured extraction + F1 eval 04_invoice_extraction.py
Build a research agent with bounded budgets ReAct agent + tools 05_research_agent.py
Automate a CRM agent with approval-gated writes memory + permissioned tools 06_crm_agent.py
Ask questions over a codebase code-aware chunking + import graph 07_codebase_qa.py
Analyze spreadsheets with schema awareness table chunking + quality checks 08_spreadsheet_analysis.py
Gate quality in CI datasets, gates, baseline diff 09_eval_pipeline.py
Tune prompts/context against an eval suite optimization + gated promotion 10_optimization_run.py
Stream answers token-by-token through the full pipeline astream + partial-JSON + compile caches 11_streaming_performance.py
Push retrieval quality with the full 0.3 toolkit sparse+late-interaction fusion, HyDE, auto-merge, GraphRAG, connectors 12_advanced_rag.py
Personalize an app with governed memory scoped remember/recall, consolidation, hygiene, memory evals 13_memory_personalization.py
Evaluate, test, and observe without a platform quality metrics, synthetic data, red-teaming, experiments, prompt registry, sessions + trace viewer 14_evaluation_observability.py
Run a multi-agent team with roles and delegation crews + shared blackboard + budget guarantees 15_multi_agent_crew.py
Build an interruptible, auditable, resumable process durable graphs + human gates + time-travel 16_durable_graph.py
Guarantee output shape and guard every generation signatures, constrained decoding, streaming validation, rails, self-correction, schema routing 17_reliable_structured_output.py

More examples

All seventeen examples in examples/ run fully offline with no API keys. Point them at a real model with environment variables:

export VINCIO_PROVIDER=openai VINCIO_MODEL=gpt-5.2-mini OPENAI_API_KEY=sk-...
cd examples && python 02_document_qa.py

Command line

vincio init my-project           # scaffold config, a starter app, and a golden dataset
vincio run app.py --input "..."  # run an app
vincio eval run golden.jsonl     # run an eval suite (with CI gates and baseline compare)
vincio eval dataset golden.jsonl --min-feedback 0.5  # curate traces into a dataset
vincio prompt lint prompts/      # lint prompt specs
vincio prompt push prompts/support.yaml --tag production  # version a prompt
vincio trace view trace_123      # TUI trace tree with scores + feedback
vincio trace export trace_123    # self-contained static HTML (also --session)
vincio trace diff a b --html diff.html  # visual side-by-side diff
vincio trace sessions            # list sessions with aggregates
vincio trace feedback trace_123 --score 1.0
vincio optimize run --target groundedness
vincio index build ./docs        # build a retrieval index
vincio memory inspect --user u1  # inspect a user's memory
vincio memory recall "answer style" --user u1  # scored hybrid recall

A FastAPI server (API-key + JWT auth, real-token SSE streaming) is available via from vincio.server import create_app — see docs/reference/api.md.

Architecture

                         ┌──────────────────────────────────────────────┐
   user input  ─────────▶│  Input engine   normalize · classify · scope  │
                         └───────────────┬──────────────────────────────┘
                                         ▼
        ┌──────────────┐        ┌────────────────┐        ┌──────────────┐
        │   Memory     │───────▶│    CONTEXT     │◀───────│  Retrieval   │
        │  L0…L5       │        │   COMPILER     │        │  hybrid RAG  │
        └──────────────┘        │ score·dedupe·  │        └──────────────┘
        ┌──────────────┐        │ conflict·      │        ┌──────────────┐
        │    Tools     │───────▶│ compress·budget│◀───────│   Prompt     │
        │ permissioned │        └───────┬────────┘        │  compiler    │
        └──────────────┘                ▼                 └──────────────┘
                              ┌────────────────────┐
                              │   Model execution  │   provider-neutral
                              └─────────┬──────────┘
                                        ▼
                    ┌─────────────────────────────────────────┐
                    │ Output validation · Evals · Security ·   │
                    │ Trace + cost · Memory write-back         │
                    └─────────────────────────────────────────┘

See AGENTS.md for the package layout and docs/concepts/ for a tour of each engine.

Roadmap

Vincio 0.1.0 shipped every in-scope subsystem above; 0.2.0 made the spine fast — streaming, concurrency, compilation caches, and CI-gated performance budgets; 0.3.0 made retrieval best-in-field — learned sparse + late interaction fused with BM25/dense/graph, query understanding, auto-merging and contextual indexing, GraphRAG, live indexes, and a connector hub; 0.4.0 made memory personal and governed — scoped remember/recall, hybrid vector+graph recall, episodic→semantic consolidation with provenance, audited forgetting, and a CI-gated memory eval harness; 0.5.0 made evaluation and observability platform-grade in-process — quality/safety/ conversational metrics, G-Eval judging with calibration, a pytest plugin, red-teaming, synthetic data, experiments with statistical significance, a prompt registry, sessions and feedback on traces, OTel GenAI export, and a local trace viewer; 0.6.0 made orchestration expressive and safe — multi-agent crews with delegation and a shared blackboard, durable stateful graphs with checkpoint/resume/time-travel, first-class human-in-the-loop, declarative composition with streaming node events, and LangGraph / OpenAI Agents SDK backends; 0.7.0 made reliability a guarantee — provider-native constrained decoding with strict schema sanitization, streaming validation with early abort, DSPy-style typed signatures, programmable rails, bounded self-correcting loops, and multi-schema routing — with 467 offline tests, seventeen runnable examples, and full documentation. The public roadmap — what's shipped, what's next, and what's intentionally out of scope — lives in ROADMAP.md.

Vincio is, and stays, a library. The building blocks for production operation (audit chain, retention, tenant isolation, RBAC/ABAC, a server) ship in the package for you to deploy on your own infrastructure. Hosted services and managed control planes are not part of this project.

Documentation

Contributing

Contributions are welcome. The test suite runs fully offline in a couple of seconds and must stay green:

pip install -e ".[dev]"
python -m pytest tests/ -q     # 467 tests, no network or API keys required
ruff check vincio/ tests/

See AGENTS.md for the codebase layout and engineering conventions.

License

Apache License 2.0 © Vincio Contributors.

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

vincio-0.7.0.tar.gz (469.7 kB view details)

Uploaded Source

Built Distribution

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

vincio-0.7.0-py3-none-any.whl (376.5 kB view details)

Uploaded Python 3

File details

Details for the file vincio-0.7.0.tar.gz.

File metadata

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

File hashes

Hashes for vincio-0.7.0.tar.gz
Algorithm Hash digest
SHA256 24d25bb36682976f3336ff85c23330fbd7e259a1519356037cbdf6b7729421dd
MD5 bb823ee08a40d371e8da57a15912db1d
BLAKE2b-256 bd2299b8a0bd73c9df395da6e0a4a03969faea801e6c70bfceba590bf4a6b4ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for vincio-0.7.0.tar.gz:

Publisher: release.yml on Ohswedd/vincio

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

File details

Details for the file vincio-0.7.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for vincio-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2952537b55fa12abd3467ea002a14fb75a0d4f78f1a793f6d47cf170ae9fd89f
MD5 98657cea9fdc0e381ba71daf26cfd846
BLAKE2b-256 ae87cad23392faf04ead50175055e8e6428e080f394eae5ec29e821b2979653c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vincio-0.7.0-py3-none-any.whl:

Publisher: release.yml on Ohswedd/vincio

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