awacke1 commited on
Commit
0979664
β€’
1 Parent(s): 5063bf1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -57,11 +57,11 @@ def main():
57
  filename = generate_filename(user_prompt)
58
  create_file(filename, user_prompt, response)
59
 
60
- st.markdown(get_table_download_link(filename), unsafe_allow_html=True)
61
 
62
  htm_files = glob.glob("*.htm")
63
  for file in htm_files:
64
- st.markdown(get_table_download_link(file), unsafe_allow_html=True)
65
 
66
  if __name__ == "__main__":
67
- main()
 
57
  filename = generate_filename(user_prompt)
58
  create_file(filename, user_prompt, response)
59
 
60
+ st.sidebar.markdown(get_table_download_link(filename), unsafe_allow_html=True)
61
 
62
  htm_files = glob.glob("*.htm")
63
  for file in htm_files:
64
+ st.sidebar.markdown(get_table_download_link(file), unsafe_allow_html=True)
65
 
66
  if __name__ == "__main__":
67
+ main()