@liendev/lien 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -8656,7 +8656,7 @@ async function handleSemanticSearch(args, ctx) {
8656
8656
  const queryEmbedding = await embeddings.embed(query);
8657
8657
  let results;
8658
8658
  if (crossRepo && vectorDB instanceof QdrantDB) {
8659
- results = await vectorDB.searchCrossRepo(queryEmbedding, limit, repoIds);
8659
+ results = await vectorDB.searchCrossRepo(queryEmbedding, limit, { repoIds });
8660
8660
  log(`Found ${results.length} results across ${Object.keys(groupResultsByRepo(results)).length} repos`);
8661
8661
  } else {
8662
8662
  if (crossRepo) {