tsgpt / app.py
brichett's picture
Update app.py
0aaefb2 verified
raw
history blame contribute delete
246 Bytes
import os
import sys
# Adjust PYTHONPATH
sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
from src.gradio_server import iface_combined
if __name__ == "__main__":
iface_combined.launch(server_name="0.0.0.0", server_port=7860)