synderesis-api / scripts /build_source_retrieval_db.py
cuivienen's picture
Deploy Unnamed AI API Docker Space
83dfd0a verified
Raw
History Blame Contribute Delete
220 Bytes
#!/usr/bin/env python3
"""Build the official-source retrieval database used by the API."""
from __future__ import annotations
from source_retrieval import main
if __name__ == "__main__":
raise SystemExit(main())