From 259705d1d6295271ca83d0751afa9af373222115 Mon Sep 17 00:00:00 2001 From: Youssef Aitousarrah Date: Mon, 9 Feb 2026 23:26:33 -0800 Subject: [PATCH] Add streamlit app file --- streamlit_app.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 streamlit_app.py diff --git a/streamlit_app.py b/streamlit_app.py new file mode 100644 index 00000000..3ab494ae --- /dev/null +++ b/streamlit_app.py @@ -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()