import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ReasoningText, ReasoningText$Outbound } from "./reasoningtext.js"; import { Status } from "./status.js"; import { SummaryText, SummaryText$Outbound } from "./summarytext.js"; /** * Reasoning item: Model reasoning metadata, including summary text and optional detailed reasoning content. */ export type Reasoning = { type: "reasoning"; id: string; summary: Array; content?: Array | undefined; encryptedContent?: string | null | undefined; status?: Status | null | undefined; }; /** @internal */ export declare const Reasoning$inboundSchema: z.ZodType; /** @internal */ export type Reasoning$Outbound = { type: "reasoning"; id: string; summary: Array; content?: Array | undefined; encrypted_content?: string | null | undefined; status?: string | null | undefined; }; /** @internal */ export declare const Reasoning$outboundSchema: z.ZodType; export declare function reasoningToJSON(reasoning: Reasoning): string; export declare function reasoningFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reasoning.d.ts.map