UNPKG

@nomyx/assistant

Version:

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

13 lines (12 loc) 412 B
import { Tool } from '../types/tool'; export declare function loadTools(filePath: string): Promise<Tool[]>; export declare function initializeTools(filePath: string): Promise<Record<string, Tool>>; export interface StaticAnalysisResult { filename: string; issues: Array<{ line: number; character: number; message: string; severity: 'error' | 'warning' | 'info'; }>; }