/** * 搜索客户端 - 精简版搜索实现 * 仅保留只读搜索功能,移除上传逻辑 */ /** * 搜索客户端配置 */ export interface SearchClientConfig { baseUrl: string; token: string; indexPath: string; } /** * 执行搜索 */ export declare function searchContext(config: SearchClientConfig, query: string, limit?: number): Promise; //# sourceMappingURL=SearchClient.d.ts.map