@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
13 lines (12 loc) • 453 B
TypeScript
import type { string_dirname } from '../../types/typeAliases';
/**
* Configuration options for the FileCacheStorage implementation.
* Defines how and where file cache data should be stored and managed.
*/
export type FileCacheStorageOptions = {
/**
* The absolute path to the root directory where cache files will be stored.
* This directory must exist and be writable by the application.
*/
rootFolderPath: string_dirname;
};