DLX Evaluator Kit

DLX / Auditable Execution Gateway

One narrow evaluator path for Phase 1.

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

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.

auditable execution accepted-first flow terminal outcomes workflow safety layer

Quickstart

Best first link for a general technical evaluator. Covers create, poll, terminal states, and the narrow current surface.

Submit One Payload

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.

one sample payload target schema polling or webhook

ROI Calculator

Use when the conversation is about silent-failure cost, rework, downstream loss, and workflow insurance rather than model access.

Audit Receipt Viewer

Best trust artifact for explaining what a public-safe receipt proves, what it does not prove, and how succeeded versus failed_safe is represented.

API Overview

Shows the current route shape, request payload, accepted-first response, succeeded response, and failed_safe response without adding any broader product assumptions.

Webhook Flow

Explains how completion notification relates to workflow truth, and why delivery state stays separate from validated business outcome.

SDK Example

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.

Contact / Next Step

Keep the next step narrow: request an evaluation API key, send one payload for review, or use the design-partner path for evaluator review.

Evaluator Contact

Email tetsutetsu11@icloud.com to request an evaluation API key, submit one payload for review, or ask for evaluator access.

  • request an evaluation API key
  • submit one payload for review
  • contact for evaluator access