File size: 221 Bytes
8ad4fd9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
set -euo pipefail

echo "Validating FAISS/index assets..."
python scripts/check_faiss.py || {
  echo "FAISS validation failed; continuing startup so API can still serve non-index routes."
}

exec "$@"