AIstudioProxyAPI / gui /__main__.py
peijun1's picture
Deploy AI Studio Proxy API to Hugging Face Spaces
a5784e9
Raw
History Blame Contribute Delete
184 Bytes
#!/usr/bin/env python3
"""
Entry point for running the GUI launcher as a module.
Usage:
poetry run python -m gui
"""
from .app import main
if __name__ == "__main__":
main()