import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Answer, Answer$Outbound } from "./answer.js"; export type EvaluatedAnswerStep = { type?: "evaluated_answer" | undefined; think: string; currentQuestion: string; errored?: boolean | undefined; answer: Answer; /** * A list of questions ids that are no longer relevant to the current answer referenced by their IDs. */ otherResolvedQuestionIds?: Array | undefined; evalPassed: boolean; evalReason: string; }; /** @internal */ export declare const EvaluatedAnswerStep$inboundSchema: z.ZodType; /** @internal */ export type EvaluatedAnswerStep$Outbound = { type: "evaluated_answer"; think: string; current_question: string; errored: boolean; answer: Answer$Outbound; other_resolved_question_ids?: Array | undefined; eval_passed: boolean; eval_reason: string; }; /** @internal */ export declare const EvaluatedAnswerStep$outboundSchema: z.ZodType; export declare function evaluatedAnswerStepToJSON(evaluatedAnswerStep: EvaluatedAnswerStep): string; export declare function evaluatedAnswerStepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evaluatedanswerstep.d.ts.map