UNPKG

@unified-llm/core

Version:
14 lines (13 loc) 367 B
import { callAnotherClient } from './callAnotherClient'; import { Tool } from '../types/unified-api'; export interface FunctionMap { [key: string]: (params: any) => Promise<any>; } export interface ArgumentMap { [functionName: string]: { [key: string]: string; }; } declare const tools: Tool[]; export { callAnotherClient }; export default tools;