@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
5 lines (4 loc) • 308 B
TypeScript
import { StructuredPrompt } from '../types';
export declare function loadPrompts(filePath: string): Promise<StructuredPrompt[]>;
export declare function loadPromptFromJson(name: string, promptData: any): StructuredPrompt;
export declare function loadPromptFromJsonFile(promptName: string): StructuredPrompt;