You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a running local streamlit app, once the customer tries to edit the model by downloading it from stage and edit it, they get a session not initialized error
They are on windows and had config toml setup for snowflake cli
They tried this and error went away:
if "session" not in st.session_state:
st.session_state["session"] = {}
It was just missing an initialization for st.session_state["session"], once added, they were able to edit the uploaded model locally.
The text was updated successfully, but these errors were encountered:
Hi Team -
On a running local streamlit app, once the customer tries to edit the model by downloading it from stage and edit it, they get a session not initialized error
They are on windows and had config toml setup for snowflake cli
They tried this and error went away:
It was just missing an initialization for st.session_state["session"], once added, they were able to edit the uploaded model locally.
The text was updated successfully, but these errors were encountered: