ratneshpasi03 commited on
Commit
04dc067
·
verified ·
1 Parent(s): 6f6b1e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,6 +1,10 @@
1
  import streamlit as st
 
2
 
3
  st.set_page_config(page_title="Coding Questions App", layout="wide")
4
  st.title("Welcome to the Coding Questions App!")
5
 
6
  st.write("Use the sidebar to navigate between pages.")
 
 
 
 
1
  import streamlit as st
2
+ from utils.save_to_hf import commit_and_push_changes
3
 
4
  st.set_page_config(page_title="Coding Questions App", layout="wide")
5
  st.title("Welcome to the Coding Questions App!")
6
 
7
  st.write("Use the sidebar to navigate between pages.")
8
+
9
+ if st.sidebar.button("Save to HF"):
10
+ commit_and_push_changes()