| 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) |
| 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) |