#!/usr/bin/env bash # Trouve-KA — chargement des seeds dans le frontier # Author: Simon-Pierre Boucher # Contact: contact@spboucher.ai set -euo pipefail cd "$(dirname "$0")/../.." if [ -x .venv/bin/python ]; then PY=.venv/bin/python else PY=python3 fi exec "$PY" -m trouveka.crawler.seed "${1:-scripts/bootstrap-seeds/seeds.txt}"