UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

9 lines (8 loc) 420 B
/** * Defines strategies for handling intermediate files during pipeline execution. * Controls how temporary or intermediate files are managed throughout processing. */ export type IntermediateFilesStrategy = 'HIDE_AND_CLEAN' | 'HIDE_AND_KEEP'; /** * TODO: [🎅] Maube add options for all kinds of cache, unite with `isCacheReloaded` and make `cacheStrategy` (which is not specific only for intermediate files) */