@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
20 lines (19 loc) • 383 B
TypeScript
import type { PromptbookStorage } from '../../../../storage/_common/PromptbookStorage';
import type { CacheItem } from './CacheItem';
/**
* @@@
*/
export type CacheLlmToolsOptions = {
/**
* @@@
*
* @default MemoryStorage
*/
storage: PromptbookStorage<CacheItem>;
/**
* @@@
*
* @default false
*/
isCacheReloaded?: boolean;
};