/** * search_context 工具的提示词定义 */ export declare const SEARCH_CONTEXT_TOOL: { name: string; description: string; inputSchema: { type: "object"; properties: { query: { type: string; description: string; }; limit: { type: string; description: string; default: number; }; }; required: string[]; }; }; //# sourceMappingURL=searchContext.d.ts.map