// DOCS
Build, deploy, and audit AI apps.
Reference for the applatform.ai SDK, the platform API, and the policies that govern them.
Search docs — try “scoped tokens”…⌘K
// GET STARTED
median time-to-first-deploy: 4 daysFrom zero to first audited deploy.
5 MIN
Quick start
Register your first AI app, run a call, see the audit log.
typescriptpythongo
15 MIN
Connect your IdP
SSO + SCIM via Okta, Entra, Auth0, or any OIDC provider.
guide
20 MIN
Define a promotion policy
Eval suites, approver chains, auto-rollback rules.
yamlguide
30 MIN
Build a custom connector
Wrap any HTTP API into a governed tool with masking.
typescript
10 MIN
Memory: vector + KV
Namespaces, retention, PII redaction at write time.
typescriptpython
15 MIN
Export the audit log
Stream signed runs to S3, Splunk, Datadog, or your warehouse.
guide
// SDK
Same surface, three languages.
applatform.ai SDKs ship for TypeScript, Python, and Go. The shape is identical so your services agree on policy regardless of which runtime they live in.
TypeScript
@applatform/sdk
v0.9.2● STABLE
Python
applatform
v0.9.2● STABLE
Go
github.com/applatform/sdk-go
v0.9.0● STABLE
Rust
applatform
—◔ BETA
typescriptpythongocurl
import { applatform } from "@applatform/sdk";
// 1 · register
const app = await applatform.apps.create({
name: "Contract Redliner",
owner: "legal-ops",
model: "claude-3.7-sonnet",
policy: "GOV-RG.4",
memory: { ns: "legal/contracts", retain: "7y" },
tools: [
applatform.tools.salesforce("contracts.read"),
applatform.tools.docusign("envelope.create"),
],
});
// 2 · run — auth, audit, replay all happen here
const result = await app.run({
input: "redline this MSA",
user: ctx.user,
});
console.log(result.audit.replayUrl);
// → https://applatform.acme-corp.io/audit/4128072// RECIPES
BROWSE ALL 42 →Patterns lifted from real installs.
governance
Block PII in outputs
Add a write-side redaction policy that never lets SSNs reach the model response.
workflowsTwo-key promotion
Require two distinct approvers from different orgs before any prod promotion.
integrationsCustom Salesforce scope
Limit a tool to a specific record type and mask comp fields by default.
memoryPer-customer namespaces
Auto-route memory writes to tenant-scoped namespaces with strict isolation.
auditStream to Splunk
Tee the signed audit log into your SIEM with sub-second lag.
auditReplay a failed run
Take a flagged run and re-execute it byte-for-byte against a new model.
workflowsCanary rollout to 1%
Use a probabilistic traffic split with auto-rollback on eval regression.
governanceEU AI Act risk classifier
Run every app through the high-risk system checklist before deploy.
// CHANGELOG
FULL HISTORY →What shipped lately.
v0.9.2
4 days ago
ServiceNow + Salesforce — production-ready connectors
- +New: field-level masking with declarative rules
- +New: per-tenant rate limits on tool calls
- +Fix: SCIM deprovisioning race on Entra
v0.9.1
12 days ago
Replay + retention shipped
- +New: full byte-level replay for any audited run
- +New: per-namespace retention (1d → 10y)
- +New: signed audit export to S3 / Splunk / Datadog
v0.9.0
5 weeks ago
Workflows GA
- +New: promotion pipeline with eval gates
- +New: prompt diff + side-by-side compare
- +New: canary traffic split + auto-rollback