GemGPT / launch.py
muhammad-fiaz
initial commit
dde4d03
raw history blame
No virus
110 Bytes
import sys
from webui import app
if "--share" in sys.argv:
app.launch(share=True)
else:
app.launch()