@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
29 lines (28 loc) • 691 B
TypeScript
import type { PromptResult } from '../../../../execution/PromptResult';
import type { Prompt } from '../../../../types/Prompt';
import type { string_date_iso8601 } from '../../../../types/typeAliases';
import type { string_promptbook_version } from '../../../../version';
/**
* @@@
*/
export type CacheItem = {
/**
* @@@
*/
date: string_date_iso8601;
/**
* @@@
*/
promptbookVersion?: string_promptbook_version;
/**
* @@@
*/
prompt: Prompt;
/**
* @@@
*/
promptResult: PromptResult;
};
/**
* TODO: [🧠] Should be this exported alongsite `cacheLlmTools` through `@promptbook/utils` OR through `@promptbook/types`
*/