torchdocs-agent / app.py
eliezer avihail
Codebase quality pass: kill silent-truncation hacks, fix latent bugs, cover them (#46)
95d6832 unverified
Raw
History Blame Contribute Delete
186 Bytes
"""Hugging Face Spaces entrypoint — delegates to app.main."""
from app.main import _warm_up, build_ui, serve
_warm_up()
demo = build_ui()
if __name__ == "__main__":
serve(demo)