@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
13 lines (12 loc) • 457 B
TypeScript
import type { string_dirname } from '../../types/string_filename';
/**
* 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;
};