Measure, Protect, and Improve AI
One API for models, memory, evals, and routing that enforces guardrails on every request.
Observability
Monitor LLM behavior, catch anomalies early, and manage usage proactively in a single dashboard.
TOOLKIT
Catch issues
before your users do.
Ship AI products faster
Models, memory, evals, and governance behind a single API
01
02
03
Catch and block risk
Policies for data, models, and spend enforced on every request
Measure AI performance
Human-aligned evals that score quality the way you do
CriteriaModel AModel BModel CScore
Faithfulness4.6
Safety4.2
Grounding4.7
Helpfulness4.3
GATEWAY
Governed AI
for every request
Guardrails and observability for every model call,
plus MCP access for coding agents to ship AI faster.
YOUR AI APP
YOUR DEVELOPERS
SANSA AI GATEWAY
OBSERVABILITY
GOVERNANCE
EVALS
MEMORY
GUARDRAILS
FINOPS
SANSA MCP
EVAL DEBUGGING
POLICY CONTROL
IDE INTEGRATION
AGENT TOOLS
200+ LLMs
Custom Models
Fine-Tuned Models
Call the Sansa API in minutes
Point your existing OpenAI SDK at Sansa.
Same chat completions interface, one URL change.
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.SANSA_API_KEY,
baseURL: "https://api.sansaml.com/v1",
});
async function main() {
const completion = await client.chat.completions.create({
model: "sansa-auto",
messages: [{
role: "user",
content: "What's Sansa?"
}],
});
console.log(completion.choices[0]);
}
main();
