TRam Governance Toolkit
Generate board-ready AI governance artifacts with per-section citations to NIST AI RMF, EU AI Act, ISO 42001, and US state laws. Built for AI Governance Committees, CISOs, and Compliance teams who need artifacts they can hand to a board or regulator.
1. Configure
A policy document for employees governing how they may use AI tools at work.
Pick the regulatory frameworks that apply to your organization. The output will cite specific clauses from each.
Free demo: 3 generations per session, 10 per IP per day. Sign up for a real API key. Production traffic? See API docs.
2. Result
Pick an artifact, select frameworks, answer the intake questions, and click Generate artifact.
Two LLM calls per generation: one for the body, one for the framework citation table. Takes 30–90 seconds.
Drafting the artifact…
Each section of the generated artifact is mapped to specific clauses in the frameworks you selected.
| Section | Framework | Reference | Rationale |
|---|
Per-section confidence
Notes
3. Use it from your code
Same endpoint your application would call.
curl -X POST https://api.tramenterprise.com/v1/agents/governance-toolkit/execute \
-H "X-API-Key: tk_live_..." \
-F 'input={
"artifact_type": "aup",
"frameworks": ["nist-ai-rmf", "iso-42001"],
"intake": {
"org_name": "Acme Corp",
"industry": "Financial Services",
"data_sensitivity": "PII, customer financial records"
}
}'
import requests, json
payload = {
"artifact_type": "aup",
"frameworks": ["nist-ai-rmf", "iso-42001"],
"intake": {
"org_name": "Acme Corp",
"industry": "Financial Services",
"data_sensitivity": "PII, customer financial records"
}
}
response = requests.post(
"https://api.tramenterprise.com/v1/agents/governance-toolkit/execute",
headers={"X-API-Key": "tk_live_..."},
data={"input": json.dumps(payload)},
)
result = response.json()
print(result["output"]["full_markdown"])
using var http = new HttpClient();
http.DefaultRequestHeaders.Add("X-API-Key", "tk_live_...");
var input = """
{
"artifact_type": "aup",
"frameworks": ["nist-ai-rmf", "iso-42001"],
"intake": {
"org_name": "Acme Corp",
"industry": "Financial Services"
}
}
""";
using var form = new MultipartFormDataContent();
form.Add(new StringContent(input), "input");
var response = await http.PostAsync(
"https://api.tramenterprise.com/v1/agents/governance-toolkit/execute",
form);
var result = await response.Content.ReadFromJsonAsync<JsonElement>();