What This Is
The current public surface is a narrow managed execution endpoint for Auditable Execution Gateway. It accepts work, returns an accepted-first status, and converges to either succeeded or failed_safe.
DLX / Auditable Execution Gateway
This evaluator kit covers the current managed execution endpoint: submit work, receive an accepted response, and end in either succeeded or failed_safe.
Current live evaluation base URL: https://nurturing-nurturing-production.up.railway.app
The current public surface is a narrow managed execution endpoint for Auditable Execution Gateway. It accepts work, returns an accepted-first status, and converges to either succeeded or failed_safe.
Best first link for a general technical evaluator. Covers create, poll, terminal states, and the narrow current surface.
Use this narrow design-partner path when you want evaluator review on one real payload, one target schema, and the downstream risk if failure is expensive.
Use when the conversation is about silent-failure cost, rework, downstream loss, and workflow insurance rather than model access.
Best trust artifact for explaining what a public-safe receipt proves, what it does not prove, and how succeeded versus failed_safe is represented.
Shows the current route shape, request payload, accepted-first response, succeeded response, and failed_safe response without adding any broader product assumptions.
Explains how completion notification relates to workflow truth, and why delivery state stays separate from validated business outcome.
The repo-local TypeScript SDK stays small: createExecution and getExecution. The example below matches the current gateway route and status vocabulary.
An evaluation API key is required for live testing.
const client = new DlxClient({
baseUrl: "https://nurturing-nurturing-production.up.railway.app",
apiKey: "<YOUR_EVAL_API_KEY>",
});
const accepted = await client.createExecution({
input: { text: "phase1-success" },
outputContract: "contract:extract.result.v1",
budget: { maximumEu: 1 },
idempotencyKey: "sdk-example-1",
});
const execution = await client.getExecution(accepted.executionId);
Repo files: packages/sdk-typescript/ and examples/sdk-basic.ts.
Keep the next step narrow: request an evaluation API key, send one payload for review, or use the design-partner path for evaluator review.
Email tetsutetsu11@icloud.com to request an evaluation API key, submit one payload for review, or ask for evaluator access.