phonghh's picture
refactor: collapse app.py to import main from danbooru_deploy
4a77736
Raw
History Blame Contribute Delete
334 Bytes
#!/usr/bin/env python3
"""DanbooruTagQuery Hugging Face Space.
All logic lives in the shared `danbooru_deploy` package (pip-installed from
realphongha/DanbooruTagQuery `deploy/`). This file only imports and runs its
single entry point, forced to CPU (the Space has no GPU).
"""
from danbooru_deploy import main
main(use_cuda=False)