import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CodeInterpreterOutput, CodeInterpreterOutput$Outbound } from "./codeinterpreteroutput.js"; export declare const CodeInterpreterToolCallStatus: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; readonly Interpreting: "interpreting"; readonly Failed: "failed"; }; export type CodeInterpreterToolCallStatus = ClosedEnum; /** * Code interpreter call item: A tool-call record for code execution, including code, container, outputs, and status. */ export type CodeInterpreterToolCall = { type: "code_interpreter_call"; id: string; code: string | null; containerId: string; outputs: Array | null; status: CodeInterpreterToolCallStatus; }; /** @internal */ export declare const CodeInterpreterToolCallStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CodeInterpreterToolCallStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CodeInterpreterToolCall$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterToolCall$Outbound = { type: "code_interpreter_call"; id: string; code: string | null; container_id: string; outputs: Array | null; status: string; }; /** @internal */ export declare const CodeInterpreterToolCall$outboundSchema: z.ZodType; export declare function codeInterpreterToolCallToJSON(codeInterpreterToolCall: CodeInterpreterToolCall): string; export declare function codeInterpreterToolCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpretertoolcall.d.ts.map