Apriel-Chat / gradio_runner.py
bradnow's picture
Add stop button and new styles
0bb4279
raw
history blame contribute delete
289 Bytes
import re
import sys
from gradio.cli import cli
# This runs a gradio app so that it can be automatically reloaded in the browser
# Example: python gradio_runner.py app.py
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())