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.

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

voyage-4-lite 1024d produces tighter cosine distance ranges than
voyage-3-lite 512d, so the old 0.5 threshold was filtering out all
results for many queries (e.g. "community builders" returned 0 results).
Raise to 0.75 to let tpuf's natural ranking handle quality.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 704eb742 1467e4b9

+2 -1
+2 -1
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 - if (r.dist > 0.5) continue; 897 + // voyage-4-lite 1024d produces tighter distance ranges than voyage-3-lite 512d 898 + if (r.dist > 0.75) continue; 898 899 // skip documents with empty/test titles 899 900 if (r.title.len == 0) continue; 900 901 if (platform_filter) |pf| {