@unified-llm/core
Version:
Unified LLM interface (in-memory).
14 lines • 660 B
JavaScript
// src/openai/tools/index.ts
import { cat } from './commands/cat.js';
import { tree } from './commands/tree.js';
import { callAnotherClient, setTools } from './callAnotherClient.js';
import { getAuthor } from './getAuthor.js';
import { getProjectInfo } from './getProjectInfo.js';
import { getCurrentTime } from './getCurrentTime.js';
import { defineTool } from '../types/unified-api.js';
const tools = [cat, tree, callAnotherClient, getAuthor, getProjectInfo, getCurrentTime];
// Inject tools into callAnotherClient to avoid circular dependency
setTools(tools);
export { callAnotherClient, defineTool };
export default tools;
//# sourceMappingURL=index.js.map