Add streamlit app file

This commit is contained in:
Youssef Aitousarrah 2026-02-09 23:26:33 -08:00
parent fc1dac665d
commit 259705d1d6
1 changed files with 11 additions and 0 deletions

11
streamlit_app.py Normal file
View File

@ -0,0 +1,11 @@
import sys
from pathlib import Path
# Ensure repo root is on sys.path for imports when running on Streamlit Cloud
ROOT = Path(__file__).resolve().parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from tradingagents.ui.dashboard import main
main()