Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ if st.session_state['sync']:
|
|
91 |
st.session_state['Recap'] = True
|
92 |
print(len(st.session_state['commits']))
|
93 |
# st.session_state['markdown'] = get_markdown(st.session_state['commits'])
|
94 |
-
st.session_state['sync'] = False
|
95 |
else:
|
96 |
print(st.session_state['commits'])
|
97 |
print(len(st.session_state['commits']))
|
@@ -102,6 +102,8 @@ if st.session_state['sync']:
|
|
102 |
|
103 |
if st.button("ask"):
|
104 |
st.write("Feature coming soon!")
|
|
|
|
|
105 |
|
106 |
|
107 |
# if st.session_state['Recap']:
|
|
|
91 |
st.session_state['Recap'] = True
|
92 |
print(len(st.session_state['commits']))
|
93 |
# st.session_state['markdown'] = get_markdown(st.session_state['commits'])
|
94 |
+
# st.session_state['sync'] = False
|
95 |
else:
|
96 |
print(st.session_state['commits'])
|
97 |
print(len(st.session_state['commits']))
|
|
|
102 |
|
103 |
if st.button("ask"):
|
104 |
st.write("Feature coming soon!")
|
105 |
+
if st.session_state['commits']:
|
106 |
+
st.table(st.session_state['commits'])
|
107 |
|
108 |
|
109 |
# if st.session_state['Recap']:
|