travel-agent / run.py
mishrabp's picture
Upload folder using huggingface_hub
6afb043 verified
raw
history blame contribute delete
259 Bytes
import os
import subprocess
import sys
# Use module execution to guarantee Streamlit runs inside the current interpreter
subprocess.run([
sys.executable, "-m", "streamlit",
"run",
os.path.join("ui", "app.py"),
"--server.runOnSave", "true"
])