Vera

veracontext.com

Vera

LocalFirst, truth seeking, agent driven, deterministic AI. Vera is designed to keep control with you: deterministic pipelines, clear inputs/outputs, and explanations you can audit.

LocalFirst
Truth Seeking
Agent Driven
Deterministic

Principles

LocalFirst

Vera runs on your computer. The core experience works in the browser with no server dependency.

Truth Seeking

Answers are built from ingested inputs so results stay evidence-based.

Agent Driven

Composable agents that execute structured steps you can understand and reproduce.

Deterministic AI

Deterministic pipelines produce repeatable outcomes instead of stochastic guesses.


How Vera runs

1

Ingest your data

Import CSVs/TSVs and keep them in memory on your device.

2

Select an agent

Agents apply deterministic logic and domain skills to your dataset.

3

Run & audit

Results include the fields used and the intermediate values that drive the outcome.

4

Explain / ask

Get grounded explanations of what changed and why.


What “Context” means (Vera Context)

Vera is context-based by design. Context is the product: a structured, auditable bundle of evidence and rules built locally on your machine—so answers are computed from what you supplied, not improvised from cloud text generation.

Data

Locally ingested files become normalized in-memory structures you can query.

Skills

Explicit assumptions, formulas, and field catalogs—fixed rules, not “prompt vibes”.

Agents

Deterministic procedures that compute results and expose what was used.

`queryContext`

A mapping layer so Ask can resolve “what you meant” to exact rows and fields.

Inputs (local)
Data + Skills + Agent config
You control what goes in.
Vera Context Model
VCM
Structured evidence bundle (auditable).
Outputs
Ask / Explain
Computed answers from context.

Why this is different from cloud AI

Most AI products ship your prompts and data to a cloud model and meter usage by tokens. Vera’s core pipeline runs on your computer: no token metering, no remote prompts by default, and a smaller security surface for sensitive datasets.

Deeper diver: underlying principles

Deterministic by design

Vera is built around a strict deterministic pipeline: ingest your data, normalize it into a structured in-memory store, compute agent-specific outputs using fixed rules and explicit assumptions, and then render explanations from those computed results.

Skills (explicit rules)

Skills are the contract: explicit assumptions, formulas, and field catalogs that agents use at runtime. This keeps policy out of ad-hoc prompt text and makes reasoning reproducible and auditable.

Reproducible outputs

Given identical inputs (the same ingested dataset, the same prompt, and the same agent configuration), Vera produces fully reproducible outputs because the core response path contains no stochastic sampling or random generation steps.

Runs locally (no tokens)

Most “AI” runs in the cloud and bills by tokens. Vera runs on your computer for the core pipeline: no token metering, no remote prompts by default, and a smaller security surface for sensitive datasets.

Vera Context Model (VCM)

Vera’s Context Model is a structured “evidence bundle” assembled from three things: (1) your locally ingested data, (2) explicit, fixed rules and assumptions registered by skills and agents, and (3) a query-time mapping layer (`queryContext`) that tells the system which fields/rows you actually mean.

This makes context auditable: the system can point to the exact fields and computations behind an answer, instead of guessing what a user “probably meant.”

Ask is context execution (not cloud prompting)

Vera’s Ask interface resolves your question against the active Context Model: it parses intent, routes the query to the relevant rows/fields, and computes the answer from the same deterministic result data the agent produced.

If the required data is missing, Vera asks for data or clarification instead of inventing facts.

LLMs: learned text completion (common cloud pattern)

Large Language Models are typically trained to predict the next token in text. At inference time, they combine learned representations (embeddings + attention) to produce continuations. Without strong grounding, this often leads to confident but incorrect statements—i.e., hallucinations—because the model is optimizing for plausible text, not verified facts.

Even with retrieval, many LLM workflows still rely on probabilistic decoding (beam search, sampling, temperature), which can change phrasing and correctness across runs.

Determinism vs decoding

Vera computes. LLMs decode. Computation follows explicit steps and rules; decoding turns a learned distribution into text.

Context + skills

Vera routes questions into structured field/row access via `queryContext`, and applies skills (explicit rules) to compute answers grounded in your ingested data.

Machine learning principles

Classic ML (including LLMs) optimizes training-time objectives to generalize across examples. That’s powerful for pattern recognition, but it is not the same as “proving” answers from your dataset.

Security posture

With local execution, your raw dataset doesn’t have to leave your machine to get core results. External APIs are opt-in and treated as inputs; they change numbers only when the upstream data changes.