UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

10 lines (9 loc) 338 B
import { ILogger, Tool, StructuredPrompt } from '../types'; export declare class ToolAndPromptLoader { private logger; constructor(logger: ILogger); initializeToolsAndPrompts(toolsPath?: string, promptsPath?: string): Promise<{ tools: Record<string, Tool>; prompts: Record<string, StructuredPrompt>; }>; }