spb/trouve-ka Public
Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com
Python 76.8%
TypeScript 15.7%
SQL 3.9%
Shell 1.4%
CSS 1.3%
Dockerfile 0.7%
1# Trouve-KA — ranking2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45"""Ranking Québec-first (CLAUDE.md §9).67Score(d,q) = w_b·BM25 + w_q·Québec + w_a·Autorité + w_f·Fraîcheur + w_l·Localité8Chaque composant avancé est optionnel : BM25 fonctionne même si tout le reste tombe.9"""1011from .query import analyze_query, build_search_body1213__all__ = ["analyze_query", "build_search_body"]14