import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CodeInterpreterEvidence = { type?: "code_interpreter" | undefined; text: string; /** * The code that was executed. */ code: string; /** * The issue that the code was written to solve. */ codeIssue: string; /** * The result of the code that was executed. */ codeResult: string; }; /** @internal */ export declare const CodeInterpreterEvidence$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterEvidence$Outbound = { type: "code_interpreter"; text: string; code: string; code_issue: string; code_result: string; }; /** @internal */ export declare const CodeInterpreterEvidence$outboundSchema: z.ZodType; export declare function codeInterpreterEvidenceToJSON(codeInterpreterEvidence: CodeInterpreterEvidence): string; export declare function codeInterpreterEvidenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpreterevidence.d.ts.map