/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 0a76c04aa827 */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * Current status of the file. */ export const ChatFileStatus = { Processing: "PROCESSING", Processed: "PROCESSED", PartiallyProcessed: "PARTIALLY_PROCESSED", Failed: "FAILED", Deleted: "DELETED", } as const; /** * Current status of the file. */ export type ChatFileStatus = OpenEnum; /** @internal */ export const ChatFileStatus$inboundSchema: z.ZodType< ChatFileStatus, z.ZodTypeDef, unknown > = openEnums.inboundSchema(ChatFileStatus); /** @internal */ export const ChatFileStatus$outboundSchema: z.ZodType< string, z.ZodTypeDef, ChatFileStatus > = openEnums.outboundSchema(ChatFileStatus);