- Create a project Initialize project scope, environments, and auth policy.
- Generate API keys Issue scoped keys per service with rotation policies.
- Install SDK Use JavaScript, Python, or Go clients with typed responses.
- Run evaluations Validate quality and safety baselines before deployment.
- Deploy to production Release with canary traffic and automatic rollback support.
DOCUMENTATION
Production-grade docs for production-grade builds.
Start quickly, integrate deeply, and keep control over your runtime, security posture, and operational telemetry.
QUICKSTART
Five steps from account to first deployment.
Example TypeScript Integration
import { Daesha } from "@daesha/sdk";
const client = new Daesha({
apiKey: process.env.DAESHA_API_KEY,
project: "payments-assistant",
});
const result = await client.responses.create({
model: "nautilus-3",
input: "Summarize failed checkout incidents from logs",
tools: [{ name: "incident_lookup" }],
safetyProfile: "strict",
});
console.log(result.outputText);
API REFERENCE
Core endpoints used by most teams.
| Endpoint | Method | Purpose |
|---|---|---|
/v1/responses |
POST | Create streaming or non-streaming model responses. |
/v1/agents/:id/runs |
POST | Trigger an agent workflow execution with tool orchestration. |
/v1/evals |
POST | Run evaluation suites against a model config snapshot. |
/v1/traces/:id |
GET | Retrieve full request lineage and policy decisions. |
/v1/deployments |
POST | Promote a release to staging or production rings. |
PLATFORM STATUS
Operational health at a glance.
API Edge
Operational in all supported regions with no elevated latency.
Studio
Operational with normal workspace performance and eval throughput.
Deployments
Operational with signed artifact verification and rollback ready.
Telemetry
Operational with complete trace ingestion and export pipelines.
BUILD FASTER
Go from docs to deployment in one session.
Use the quickstart templates and push your first production-safe flow in minutes.