Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,20 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from ai_assistant import ai_doctor
|
3 |
|
4 |
-
|
5 |
-
st.markdown(
|
6 |
-
"""
|
7 |
-
<style>
|
8 |
-
.sidebar .sidebar-content {
|
9 |
-
background-image: url('ai_doctor_img.jpg');
|
10 |
-
background-size: cover;
|
11 |
-
background-repeat: no-repeat;
|
12 |
-
background-position: center;
|
13 |
-
}
|
14 |
-
</style>
|
15 |
-
""",
|
16 |
-
unsafe_allow_html=True
|
17 |
-
)
|
18 |
|
19 |
# Display title in the main content area
|
20 |
st.markdown("<h1 style='text-align: center;'>Your AI Doctor 🤖</h1>", unsafe_allow_html=True)
|
|
|
1 |
import streamlit as st
|
2 |
from ai_assistant import ai_doctor
|
3 |
|
4 |
+
st.image('ai_doctor_img.jpg')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
# Display title in the main content area
|
7 |
st.markdown("<h1 style='text-align: center;'>Your AI Doctor 🤖</h1>", unsafe_allow_html=True)
|