search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "fix: raise semantic distance threshold for voyage-4-lite"

This reverts commit 704eb7427ddae23ee2d8e659df332f790341ae0b.

zzstoatzz 1603d346 704eb742

+1 -2
+1 -2
backend/src/search.zig
··· 894 894 for (results) |r| { 895 895 if (count >= 20) break; 896 896 // skip results with high cosine distance (low similarity) 897 - // voyage-4-lite 1024d produces tighter distance ranges than voyage-3-lite 512d 898 - if (r.dist > 0.75) continue; 897 + if (r.dist > 0.5) continue; 899 898 // skip documents with empty/test titles 900 899 if (r.title.len == 0) continue; 901 900 if (platform_filter) |pf| {