export interface FileInputConfigWorkflowOverride { /** When enabled, users may attach images or PDFs in chat when the LLM supports multimodal input. */ enabled?: boolean; /** Number of most-recent files kept in memory during a conversation. Older files are summarized and their bytes freed. */ maxFilesInMemory?: number; /** Total files a user can upload in one conversation. Uploads are billed per file. Use -1 for no limit, or a value >= max_files_in_memory. */ maxFilesPerConversation?: number; }