mirror of
https://github.com/open-webui/open-webui
synced 2024-12-28 14:52:23 +00:00
refac
This commit is contained in:
parent
907cf61da7
commit
50c3be2136
@ -38,7 +38,9 @@
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
if (mergedDocuments.every((doc) => doc.distance !== undefined)) {
|
if (mergedDocuments.every((doc) => doc.distance !== undefined)) {
|
||||||
mergedDocuments.sort((a, b) => (a.distance ?? Infinity) - (b.distance ?? Infinity));
|
mergedDocuments = mergedDocuments.sort(
|
||||||
|
(a, b) => (b.distance ?? Infinity) - (a.distance ?? Infinity)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user