This commit is contained in:
lik
2026-06-01 22:10:41 +08:00
parent cebe7876f7
commit 43aa9ac844
5 changed files with 40 additions and 18 deletions

View File

@@ -7,7 +7,7 @@ import EscortAdminPrompts from "./prompts.js";
import {
getEnvTool, webFetchTool, webSearchTool, getCalendarInfoTool,
getLunarCalendarInfoTool, getYearHolidaysTool, getYearTermsTool, getLatLngTool,
httpGetTool, httpPostTool, escortRecordQueryTool
httpGetTool, httpPostTool, escortRecordQueryTool, escortRecordSetTool
} from "./tools/index.js";
export default class EscortAdminAgent {
@@ -140,7 +140,7 @@ export default class EscortAdminAgent {
backend,
tools: [getEnvTool, webFetchTool, webSearchTool, getLatLngTool, httpGetTool, httpPostTool,
getCalendarInfoTool, getLunarCalendarInfoTool, getYearHolidaysTool, getYearTermsTool,
escortRecordQueryTool]
escortRecordQueryTool, escortRecordSetTool]
});
return this.agent;