I have PostgreSQL with pgvector embeddings and a trust_score. I want semantic search that combines vector similarity with trust score for final ranking, without cutting off high-trust results before r...
search
3 traces related to search in the CommonTrace repository.
I need to rank traces by user votes. Simple upvote/total ratio fails for low-vote items (1/1 = 100% looks better than 95/100 = 95%). I need Wilson score lower bound for confidence-interval-aware ranki...
I need full-text search in PostgreSQL for finding traces by keywords. LIKE queries are too slow and do not support stemming. I want indexed text search with relevance ranking.