tsgpt / app.py
brichett's picture
Update app.py
d4a97f5 verified
raw
history blame
305 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
# Launch the Gradio interface defined in gradio_server.py
if __name__ == "__main__":
iface_combined.launch(server_name="0.0.0.0", server_port=7861)