AUDIT LAYER v0.1
Your AI agents are making decisions.
Every one is logged here.
◎
No agents connected yet
Connect your AI agent using the Truveil SDK to start seeing audit data here.
LIVE AGENT ACTIVITY
Waiting for your agent. Select a project above or connect your agent using the SDK.
or explore demo scenarios
Select a run to see the audit preview
Manual Analysis
Paste any agent workflow description for instant audit
Analysing agent behaviour...
→ Parsing agent action sequence
→ Identifying autonomous decision points
→ Evaluating accountability gaps
→ Assessing data source risks
→ Generating plain-language report
Something went wrong. Please try again.
LIVE AGENT ACTIVITY 0 actions
Waiting for agent events. Select a project above or connect your agent using the SDK.
Admin Dashboard
YOUR API KEY
Loading...
Use this as your client secret in the SDK. Keep it private.
01
Copy the SDK file
Drop truveil_sdk.py or truveil.js into your project folder
02
Initialise Truveil
Add these lines at the top of your agent file using your API key above
const Truveil = require('./truveil');
const truveil = new Truveil(
'https://responsible-ai-proxy.onrender.com',
'YOUR_API_KEY_ABOVE',
'your-project-name'
);
await truveil.log({
action: 'PROCESS_APPLICATION',
detail: 'Agent processed application without human review'
});
from truveil_sdk import TruveilSDK
truveil = TruveilSDK(
'https://responsible-ai-proxy.onrender.com',
'YOUR_API_KEY_ABOVE',
'your-project-name'
)
truveil.log(
action='PROCESS_APPLICATION',
detail='Agent processed application without human review'
)
03
Watch your audit trail appear
Run your agent — events appear in Live Feed automatically within seconds