All demosEvidence Check
Evidence Check
Check a proposed record against its source. Spot different values, missing evidence and uncertain matches before reuse.
Powered by/verify
Performance & cost
This page session · since page load
- Typical delivery time
- —
- Live input tokens
- 0
- Estimated inference cost · USD
- $0.00
How these numbers work · 0 successful requests
- Live model compute
- —
- Successful requests
- 0
Average per measured successful live request.
Run an example for free to see its measurements.
Delivery time is the median browser time for successful requests, including queue, network, and retries. Cached delivery speed is not inference speed. Model compute can exceed browser time when one request processes many inputs.
Tokens come from response headers. Inference costs use $0.04 per million input tokens, before plan credits. The estimate includes live and recorded tokens at the same rate; cached examples are not charged again. Missing usage is unavailable or a partial total (≥). Demo resets keep these totals; reload to start a new session.
Check the stock record free, inspect its evidence, then use your key for custom source text or values.
Build with the SDKTypeScript · Python · dm1
Use these API building blocks in your own app. Each sample is one request from this demo’s supplied inputs. Your code owns the surrounding workflow, validation and actions.
Copied samples call the live API with MS_API_KEY and use your quota. Keep the key on your server. The free demo cache is only for this site.
npm install @cloudraker/milliseconds
export MS_API_KEY="your-api-key"import { DecisionMachine } from "@cloudraker/milliseconds";
// Run on your server; reads MS_API_KEY from the environment.
const dm = new DecisionMachine();
const { result, usage } = await dm.verify(
"SERVICE AGREEMENT\n\nCustomer: Northstar Design Ltd.\nAnnual fee: USD 18,000.\nRenewal date: 2027-03-01.\n\nServices include hosting and priority support.",
{
"name": "customer",
"description": "The customer company named in the service agreement"
},
"Northstar Design Ltd."
).withUsage();
console.log(result);
console.log({ inputTokens: usage.inputTokens, modelMs: usage.inferenceMs });pip install cloudraker-milliseconds
export MS_API_KEY="your-api-key"from milliseconds import DecisionMachine
# Reads MS_API_KEY from the environment.
dm = DecisionMachine()
result = dm.verify(
"SERVICE AGREEMENT\n\nCustomer: Northstar Design Ltd.\nAnnual fee: USD 18,000.\nRenewal date: 2027-03-01.\n\nServices include hosting and priority support.",
{
"name": "customer",
"description": "The customer company named in the service agreement"
},
"Northstar Design Ltd."
)
print(result)npm install -g @cloudraker/milliseconds
export MS_API_KEY="your-api-key"# Reads MS_API_KEY. JSON on stdin supplies the complete request.
dm1 verify --json --usage <<'DM1_REQUEST'
{
"text": "SERVICE AGREEMENT\n\nCustomer: Northstar Design Ltd.\nAnnual fee: USD 18,000.\nRenewal date: 2027-03-01.\n\nServices include hosting and priority support.",
"field": {
"name": "customer",
"description": "The customer company named in the service agreement"
},
"value": "Northstar Design Ltd."
}
DM1_REQUESTCheck the record before it travels
Review a contract summary, imported record or extracted field against supplied text. Each populated field makes one verify request. The demo locates the returned wording in the source and applies a conservative match rule.
Demo scope
This is field-value checking, not general fact-checking or a hallucination detector. A model can select the wrong field, miss a value or accept a partial match. “Different value” is a review prompt, not proof of contradiction. The 0.90 span-confidence threshold is a demo policy, not a measured accuracy rate. No external systems are updated.