Source trust for AI agents
Add a trust gate before your agent reads anything.
Entropy0 is a pre-ingestion source trust layer. Before an external source enters your agent's context, Entropy0 scores it across Trust, Threat, and Deviation signals and returns a machine-readable action. One API call. Deterministic. No LLM in the loop.
Agent receives task
Finds candidate source
Fetches content — no gate
Content enters context
LLM reasons over it
Agent acts
Agent receives task
Finds candidate source
POST /v1/decide — source evaluated
proceed / sandbox / escalate / deny
Only cleared sources enter context
LLM reasons over it
Agent acts
Structured answers for agents and developers evaluating Entropy0.
Every /v1/decide response returns one of these five actions. Actions are shaped by interaction context and policy profile — the same domain may get different actions depending on what the agent is about to do.
One call before fetch. Works with any language or framework.
const res = await fetch("https://entropy0.ai/api/v1/decide", {
method: "POST",
headers: { "X-API-Key": "sk_ent0_xxxx", "Content-Type": "application/json" },
body: JSON.stringify({
target: { type: "domain", value: sourceDomain },
interaction: { kind: "fetch", sensitivity: "medium" },
policy: { profile: "balanced" },
}),
}).then(r => r.json());
const { recommended_action } = res.decision;
if (recommended_action === "proceed") {
ragContext.push(await fetch(url));
} else if (recommended_action === "proceed_with_caution") {
ragContext.push(await fetchReadOnly(url));
} else {
log("blocked", { source: sourceDomain, action: recommended_action });
}- · Does not scan prompt content, model outputs, or page text
- · Does not detect jailbreaks or prompt-injection payloads inside content
- · Does not monitor model behavior or agent reasoning
- · Does not replace Lakera, Cloudflare AI Gateway, or LlamaFirewall — those protect prompts and responses; Entropy0 protects the source before retrieval
- · Does not evaluate hosted content on trusted infrastructure (e.g., a specific GitHub repository)
Entropy0 evaluates source-level infrastructure signals. It is a pre-ingestion trust gate, not a final guardrail.