@unified-llm/core
Version:
Unified LLM interface (in-memory).
18 lines • 1.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.defineTool = exports.callAnotherClient = void 0;
// src/openai/tools/index.ts
const cat_js_1 = require("./commands/cat.js");
const tree_js_1 = require("./commands/tree.js");
const callAnotherClient_js_1 = require("./callAnotherClient.js");
Object.defineProperty(exports, "callAnotherClient", { enumerable: true, get: function () { return callAnotherClient_js_1.callAnotherClient; } });
const getAuthor_js_1 = require("./getAuthor.js");
const getProjectInfo_js_1 = require("./getProjectInfo.js");
const getCurrentTime_js_1 = require("./getCurrentTime.js");
const unified_api_js_1 = require("../types/unified-api.js");
Object.defineProperty(exports, "defineTool", { enumerable: true, get: function () { return unified_api_js_1.defineTool; } });
const tools = [cat_js_1.cat, tree_js_1.tree, callAnotherClient_js_1.callAnotherClient, getAuthor_js_1.getAuthor, getProjectInfo_js_1.getProjectInfo, getCurrentTime_js_1.getCurrentTime];
// Inject tools into callAnotherClient to avoid circular dependency
(0, callAnotherClient_js_1.setTools)(tools);
exports.default = tools;
//# sourceMappingURL=index.js.map