GemGPT / launch.py
muhammad-fiaz
initial commit
dde4d03
import sys
from webui import app
if "--share" in sys.argv:
app.launch(share=True)
else:
app.launch()