Spaces:
Sleeping
Sleeping
Léo Bourrel
commited on
Commit
·
346c949
1
Parent(s):
decc199
feat: add welcome message
Browse files- sorbobotapp/app.py +12 -0
sorbobotapp/app.py
CHANGED
@@ -76,6 +76,18 @@ with chat_column:
|
|
76 |
information_placeholder = st.container()
|
77 |
|
78 |
with chat_placeholder:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
for chat in st.session_state.history:
|
80 |
div = f"""
|
81 |
<div class="chat-row
|
|
|
76 |
information_placeholder = st.container()
|
77 |
|
78 |
with chat_placeholder:
|
79 |
+
div = f"""
|
80 |
+
<div class="chat-row">
|
81 |
+
<img class="chat-icon" src="https://cdn-icons-png.flaticon.com/512/1129/1129398.png" width=32 height=32>
|
82 |
+
<div class="chat-bubble ai-bubble">
|
83 |
+
Welcome to SorboBot, a Hugging Face Space designed to revolutionize the way you find published articles. <br/>
|
84 |
+
Powered by a full export from ScanR and Hal at Sorbonne University, SorboBot utilizes advanced language model technology
|
85 |
+
to provide you with a list of published articles based on your prompt.
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
"""
|
89 |
+
st.markdown(div, unsafe_allow_html=True)
|
90 |
+
|
91 |
for chat in st.session_state.history:
|
92 |
div = f"""
|
93 |
<div class="chat-row
|