Interactive Demo
SSL for AI Interactions
Trust Receipt Demo
See how SONATE generates cryptographic trust receipts for AI interactions — like SSL certificates, but for every AI call.
What Just Happened?
Receipt Generated
A SHA-256 hash was created from your message, the AI response, timestamp, and trust scores. This is your cryptographic proof.
Trust Evaluated
The AI response was scored against six enforceable governance constraints. The weighted average produced the trust score you see.
Policy Checked
If the trust score fell below the threshold (default: 70), it would be flagged as PARTIAL or FAIL with alerts triggered.
Developer SDK
Integrate in Your App
Add trust receipts to any AI integration in minutes. One line wraps your existing OpenAI client.
SONATE Public Key (Ed25519)
Loading...
Install
npm install @yseeku/trust-receiptsWrap your AI client
import { wrap } from "@yseeku/trust-receipts";
import OpenAI from "openai";
const client = wrap(new OpenAI(), {
agent: "did:web:yseeku.com:agents:my-agent",
policy: "default",
});
// Every call now returns a trust receipt
const res = await client.chat.completions.create({
model: "gpt-4o",
messages: [{ role: "user", content: "Hello" }],
});
console.log(res.receipt); // { id, signature, trust_score, ... }