ashrma commited on
Commit
2cf8f22
1 Parent(s): 68deaf2

Updated divider code in streamlit

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -86,7 +86,7 @@ with tab1:
86
  st.dataframe(df, use_container_width=True)
87
 
88
 
89
- st.divider()
90
 
91
  input_text = st.text_area("Ask your query")
92
 
@@ -112,7 +112,7 @@ with tab2:
112
  remove_file(file_name)
113
 
114
 
115
- st.divider()
116
  input_text = st.text_area("Ask your question")
117
 
118
  if input_text is not None:
@@ -124,7 +124,7 @@ with tab2:
124
 
125
  st.success(response)
126
 
127
- st.divider()
128
  # Shows the source documents context which
129
  # has been used to prepare the response
130
  st.write("Source Documents")
 
86
  st.dataframe(df, use_container_width=True)
87
 
88
 
89
+ st.write("---")
90
 
91
  input_text = st.text_area("Ask your query")
92
 
 
112
  remove_file(file_name)
113
 
114
 
115
+ st.write("---")
116
  input_text = st.text_area("Ask your question")
117
 
118
  if input_text is not None:
 
124
 
125
  st.success(response)
126
 
127
+ st.write("---")
128
  # Shows the source documents context which
129
  # has been used to prepare the response
130
  st.write("Source Documents")