/** * Serializer for stop generation request. */ export type StopGenerationRequest = { /** * The unique identifier of the generation to stop */ generation_id: string; };