Spaces:
Sleeping
Sleeping
Updated divider code in streamlit
Browse files
app.py
CHANGED
|
@@ -86,7 +86,7 @@ with tab1:
|
|
| 86 |
st.dataframe(df, use_container_width=True)
|
| 87 |
|
| 88 |
|
| 89 |
-
st.
|
| 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.
|
| 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.
|
| 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")
|