import * as z from "zod/v4-mini"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const MemoryEvalRunResponseStatus: { readonly Completed: "completed"; }; export type MemoryEvalRunResponseStatus = ClosedEnum; export type Scores = { recallAtK: number; precisionAtK: number; avgContextCharacters: number; cases: number; }; export type Result = { query: string; hit: boolean; returned: number; contextCharacters: number; }; export type MemoryEvalRunResponse = { evalRunId: string; status: MemoryEvalRunResponseStatus; scores: Scores; avgSearchLatencyMs?: number | undefined; results: Array; }; /** @internal */ export declare const MemoryEvalRunResponseStatus$inboundSchema: z.ZodMiniEnum; /** @internal */ export declare const Scores$inboundSchema: z.ZodMiniType; export declare function scoresFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Result$inboundSchema: z.ZodMiniType; export declare function resultFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryEvalRunResponse$inboundSchema: z.ZodMiniType; export declare function memoryEvalRunResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memory-eval-run-response.d.ts.map