UNPKG

@maximai/maxim-js

Version:

Maxim AI JS SDK. Visit https://getmaxim.ai for more info.

12 lines (11 loc) 474 B
import { PromptVersionsAndRules } from "./prompt"; /** * Type alias representing an entry stored in the Maxim cache. * * Currently aliases PromptVersionsAndRules, which contains prompt configurations, * deployment rules, and version information. This type may be extended in the * future to support additional cache entry types. * * @see {@link PromptVersionsAndRules} For the full structure of cached prompt data */ export type CacheEntry = PromptVersionsAndRules;