Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -50,8 +50,8 @@ def ChatBot(Questions):
|
|
50 |
else:
|
51 |
response=Bot(Questions)
|
52 |
return response.translate(str.maketrans('', '', '\n'))
|
53 |
-
|
54 |
-
|
55 |
st.set_page_config(
|
56 |
page_title="AI Engineer Test Chatbot",
|
57 |
page_icon="Insight Therapy Solutions.png",
|
@@ -65,7 +65,7 @@ st.sidebar.markdown("[Visit us at](https://www.insighttherapysolutions.com/)")
|
|
65 |
"""
|
66 |
# Add some custom styling
|
67 |
st.markdown(
|
68 |
-
|
69 |
<style>
|
70 |
.css-18e3th9 {
|
71 |
padding-top: 3rem;
|
@@ -87,5 +87,5 @@ st.markdown(
|
|
87 |
border-radius: 8px;
|
88 |
}
|
89 |
</style>
|
90 |
-
|
91 |
)
|
|
|
50 |
else:
|
51 |
response=Bot(Questions)
|
52 |
return response.translate(str.maketrans('', '', '\n'))
|
53 |
+
"""
|
54 |
+
# --- Logo ---
|
55 |
st.set_page_config(
|
56 |
page_title="AI Engineer Test Chatbot",
|
57 |
page_icon="Insight Therapy Solutions.png",
|
|
|
65 |
"""
|
66 |
# Add some custom styling
|
67 |
st.markdown(
|
68 |
+
|
69 |
<style>
|
70 |
.css-18e3th9 {
|
71 |
padding-top: 3rem;
|
|
|
87 |
border-radius: 8px;
|
88 |
}
|
89 |
</style>
|
90 |
+
, unsafe_allow_html=True
|
91 |
)
|