UNPKG

@meldscience/meld

Version:

pipeable one-shot prompt scripting toolkit

14 lines (13 loc) 331 B
import { MeldOptions } from './meld'; export interface OneshotcatOptions extends MeldOptions { model?: string; system?: string; systemFile?: string; } export declare class Oneshotcat { private options; constructor(options: OneshotcatOptions); process(): Promise<Array<{ response: string; }>>; }