mikepastor11 commited on
Commit
685e05b
1 Parent(s): 3bb5ed0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -132,6 +132,19 @@ def process_user_question(user_question):
132
  st.write(bot_template.replace(
133
  "{{MSG}}", message.content), unsafe_allow_html=True)
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  ###################################################################################
136
  def main():
137
 
 
132
  st.write(bot_template.replace(
133
  "{{MSG}}", message.content), unsafe_allow_html=True)
134
 
135
+
136
+ # with st.container() as scrollable_container:
137
+ # # Your content to be scrolled goes here
138
+ # for i in range(100):
139
+ # st.write(f"Line {i}")
140
+
141
+ # st.markdown(f"""<style>
142
+ # .stApp #scrollable_container {{
143
+ # overflow-y: scroll;
144
+ # height: 300px;
145
+ # }}
146
+ # </style>""", unsafe_allow_html=True)
147
+
148
  ###################################################################################
149
  def main():
150