/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type SessionCompressRequest = { agentWallet: string; coordinatorModel: string; }; /** @internal */ export type SessionCompressRequest$Outbound = { agentWallet: string; coordinatorModel: string; }; /** @internal */ export const SessionCompressRequest$outboundSchema: z.ZodMiniType< SessionCompressRequest$Outbound, SessionCompressRequest > = z.object({ agentWallet: z.string(), coordinatorModel: z.string(), }); export function sessionCompressRequestToJSON( sessionCompressRequest: SessionCompressRequest, ): string { return JSON.stringify( SessionCompressRequest$outboundSchema.parse(sessionCompressRequest), ); }