/** * AI Eval tools — 8 tools for testing AI model behavioral consistency. * Each tool runs prompts through Claude API, measures response distributions, * and scores them with ZPL's AIN engine. * * Requires ANTHROPIC_API_KEY in env (separate from ZPL_API_KEY). */ import type { Server } from "./helpers.js"; import { ZPLEngineClient } from "../engine-client.js"; export declare function registerEvalTools(server: Server, getClient: () => ZPLEngineClient): void;