SPB Git

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%
424 B · 15 lines python
Raw Blame History
1# Trouve-KA — enrichissement asynchrone2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai45"""Enrichissement asynchrone des documents (étapes 2-3, CLAUDE.md §4).67Ne bloque JAMAIS l'indexation : consomme Redis Streams et met à jour8les documents déjà cherchables (scores de domaine, fraîcheur, plus tard9embeddings et entités).10"""1112from .worker import EnrichmentWorker1314__all__ = ["EnrichmentWorker"]15