sort in internal scoring, extract latency keys in batch for top 100

This commit is contained in:
2024-12-17 03:39:02 -06:00
parent db9bcb06dc
commit 6c00da29a7
4 changed files with 58 additions and 8 deletions

View File

@@ -8,8 +8,6 @@ function App() {
async function invoke() {
const offers = await Search();
console.log({ offer: offers[0] });
offers.sort((a, b) => b.Score - a.Score);
setState(offers);
}