/** * `BETA` * * Performs the evaluation of the Lua script. * * **Scopes:** `studio-evaluations:create` * **Engine:** Not available in-engine * * @param body */ export declare const postOpenEvalApiV1Eval: import("../..").EndpointGeneric<{}, { job_id: string | null; status_code: number; error: string | null; }, { name: string; input_script: string; description?: string | null | undefined; use_reference_mode?: boolean | undefined; custom_llm_info?: { name: string; url: string; model_version?: string | null | undefined; api_key?: string | null | undefined; } | undefined; }>; /** * `BETA` * * Gets the evaluation record by job ID. * * **Scopes:** `studio-evaluations:create` * **Engine:** Not available in-engine * * @param jobId The job ID of the evaluation record. */ export declare const getOpenEvalApiV1EvalRecordsJobId: import("../..").EndpointGeneric<{ jobId: string; }, { name: string | null; jobId: string; inputScript: string | null; id?: number | undefined; user?: { id: string | null; } | undefined; useReferenceMode?: string | null | undefined; description?: string | null | undefined; jobStatus?: string | null | undefined; results?: { mode: string | null; result: { passes: number; fails: number; checks: number; warning: string | null; error: string | null; interruptions: { check: number; type: string | null; }[] | null; }; }[] | null | undefined; fullLogs?: string | null | undefined; evalSucceeded?: string | null | undefined; createUtc?: string | null | undefined; }, undefined>;