/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 8e8a04296301 */ import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export const ModerationLLMAction = { None: "none", Block: "block", } as const; export type ModerationLLMAction = ClosedEnum; /** @internal */ export const ModerationLLMAction$outboundSchema: z.ZodEnum< typeof ModerationLLMAction > = z.enum(ModerationLLMAction);