@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
9 lines (8 loc) • 420 B
TypeScript
/**
* 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)
*/