Spaces:
Running
Running
Adjustment welcoming text
Browse files
app.py
CHANGED
|
@@ -34,6 +34,16 @@ st.markdown(
|
|
| 34 |
unsafe_allow_html=True
|
| 35 |
)
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
########### Function for getting response #######################
|
| 39 |
def chat_response(query, filter_metadata=None):
|
|
|
|
| 34 |
unsafe_allow_html=True
|
| 35 |
)
|
| 36 |
|
| 37 |
+
# Add vertical spacing between banner and help text
|
| 38 |
+
st.markdown("<div style='margin-top: 40px;'></div>", unsafe_allow_html=True)
|
| 39 |
+
|
| 40 |
+
# Help text (static)
|
| 41 |
+
st.markdown("<h3 style='text-align: center;'>*Placeholder Text* Welcome to your chatbot research assistant. It helps you find and summarize specific decisions and annexes, and can also answer general questions about the text. For transparency, it provides references with links to the relevant decisions and annexes, so you can easily verify the sources.
|
| 42 |
+
|
| 43 |
+
While this chatbot was developed with care, we recommend double-checking the links to gain a deeper understanding of the material. </h3>", unsafe_allow_html=True)
|
| 44 |
+
|
| 45 |
+
# Add vertical spacing between help text and question input
|
| 46 |
+
st.markdown("<div style='margin-top: 25px;'></div>", unsafe_allow_html=True)
|
| 47 |
|
| 48 |
########### Function for getting response #######################
|
| 49 |
def chat_response(query, filter_metadata=None):
|