UNPKG

@meldscience/meld

Version:

pipeable one-shot prompt scripting toolkit

14 lines (13 loc) 448 B
export interface ToolConfig { defaultModel?: string; anthropicApiKey?: string; openaiApiKey?: string; } export declare const RC_FILE = ".meldrc"; export declare function loadConfig(options?: Partial<ToolConfig>): ToolConfig; export declare function setupConfig(options: { anthropicApiKey?: string; openaiApiKey?: string; defaultModel?: string; }): void; export declare function checkAndPromptConfig(models: string[]): void;