lib/tools/tools.ts (31 lines of code) (raw):

import { toolsList } from "../../config/tools-list"; import { VECTOR_STORE_ID } from "@/config/constants"; export const tools = [ { type: "file_search", vector_store_ids: [VECTOR_STORE_ID], }, // Mapping toolsList into the expected tool definition format ...toolsList.map((tool) => { const toolDef: { type: string; name: string; parameters: any; strict: boolean; description?: string; } = { type: "function", name: tool.name, parameters: { type: "object", properties: { ...tool.parameters }, required: Object.keys(tool.parameters), additionalProperties: false, }, strict: true, }; if ((tool as any).description) { toolDef.description = (tool as any).description; } return toolDef; }), ];