UNPKG

@meldscience/meld

Version:

pipeable one-shot prompt scripting toolkit

16 lines (15 loc) 351 B
export interface OneshotcatOptions { inputFile: string; model?: string; system?: string; systemFile?: string; } export declare class Oneshotcat { private options; constructor(options: OneshotcatOptions); process(): Promise<Array<{ variation?: any; systemPrompt: string; response: string; }>>; }