From 45413859e5214170d1f55cf036f40a78527feed5 Mon Sep 17 00:00:00 2001 From: Vladimir Timofeenko Date: Wed, 23 Oct 2024 10:58:10 -0700 Subject: [PATCH] llm chat model comparison: pin streamlit version to fix container height kwarg Currently creating STREAMLIT directly from the git repo will cause app to fail starting because it may default to a version of streamlit without `height` argument for `st.container`. This change pins the streamlit version to the latest currently available which fixes the error. --- LLM Chat Model Comparison/environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/LLM Chat Model Comparison/environment.yml b/LLM Chat Model Comparison/environment.yml index b463f6d..a790648 100644 --- a/LLM Chat Model Comparison/environment.yml +++ b/LLM Chat Model Comparison/environment.yml @@ -3,3 +3,4 @@ channels: - snowflake dependencies: - snowflake-ml-python + - streamlit=1.35.0