diff --git a/scripts/webui_streamlit.py b/scripts/webui_streamlit.py index 92d3ef5..513de45 100644 --- a/scripts/webui_streamlit.py +++ b/scripts/webui_streamlit.py @@ -61,8 +61,8 @@ except: warnings.filterwarnings("ignore", category=DeprecationWarning) defaults = OmegaConf.load("configs/webui/webui_streamlit.yaml") -if (os.path.exists("userconfig_streamlit.yaml")): - user_defaults = OmegaConf.load("userconfig_streamlit.yaml"); +if (os.path.exists("configs/webui/userconfig_streamlit.yaml")): + user_defaults = OmegaConf.load("configs/webui/userconfig_streamlit.yaml"); defaults = OmegaConf.merge(defaults, user_defaults) # this is a fix for Windows users. Without it, javascript files will be served with text/html content-type and the bowser will not show any UI