@unified-llm/core
Version:
Unified LLM interface.
14 lines (13 loc) • 367 B
TypeScript
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;