UNPKG

codevault

Version:

AI-powered semantic code search via Model Context Protocol

11 lines 422 B
export const RERANKER_OPTIONS = ['off', 'api']; export const DEFAULT_RERANKER = 'off'; export function hasScopeFilters(scope) { if (!scope) { return false; } return Boolean((Array.isArray(scope.path_glob) && scope.path_glob.length > 0) || (Array.isArray(scope.tags) && scope.tags.length > 0) || (Array.isArray(scope.lang) && scope.lang.length > 0)); } //# sourceMappingURL=search.js.map