Update app_utils/frontend_utils.py
Browse files
app_utils/frontend_utils.py
CHANGED
@@ -12,7 +12,12 @@ entailment_html_messages = {
|
|
12 |
|
13 |
def build_sidebar():
|
14 |
sidebar = """
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
16 |
"""
|
17 |
st.sidebar.markdown(sidebar, unsafe_allow_html=True)
|
18 |
|
|
|
12 |
|
13 |
def build_sidebar():
|
14 |
sidebar = """
|
15 |
+
<h1 style='text-align: center'>NS-AI-Labs</h1>
|
16 |
+
<div style='text-align: center'>
|
17 |
+
<i>Text Entailment for Referral Mis-sell</i>
|
18 |
+
<p><br/><a href='https://www.newtonschool.co/'>Github project</a> - Based on <a href='https://github.com/deepset-ai/haystack'>Haystack</a></p>
|
19 |
+
<p><small><a href='https://www.newtonschool.co/'>Data crawled from Sales Call</a></small></p>
|
20 |
+
</div>
|
21 |
"""
|
22 |
st.sidebar.markdown(sidebar, unsafe_allow_html=True)
|
23 |
|