UNPKG

@unified-llm/core

Version:

Unified LLM interface (in-memory).

23 lines 776 B
import { callAnotherClient } from './callAnotherClient.js'; import type { Tool } from '../types/unified-api.js'; import { defineTool } from '../types/unified-api.js'; export interface FunctionMap { [key: string]: (params: any) => Promise<any>; } export interface ArgumentMap { [functionName: string]: { [key: string]: string; }; } declare const tools: readonly [Tool<{ filePath: string; }, string>, Tool<{ directory?: string; excludeFolders?: string[]; }, string>, Tool<{ id: string; threadId: string; }, import("../types/unified-api.js").UnifiedChatResponse>, Tool<undefined, string>, Tool<undefined, string>, Tool<undefined, string>]; export { callAnotherClient, defineTool }; export default tools; //# sourceMappingURL=index.d.ts.map