press_ethics / app.py
jonghhhh's picture
Upload folder using huggingface_hub
3c03221 verified
raw
history blame contribute delete
335 Bytes
# -*- coding: utf-8 -*-
"""
Hugging Face Spaces ์ง„์ž…์ 
"""
import subprocess
import sys
# Streamlit ์•ฑ ์‹คํ–‰
if __name__ == "__main__":
subprocess.run([
sys.executable, "-m", "streamlit", "run",
"multimodal_rag_langgraph_gemini_st.py",
"--server.port=7860",
"--server.address=0.0.0.0"
])