Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,13 +12,14 @@ from streamlit_drawable_canvas import st_canvas
|
|
12 |
|
13 |
|
14 |
|
15 |
-
# Set page config for a futuristic look
|
16 |
-
st.set_page_config(page_title="NeuraSense AI", page_icon="🧠", layout="wide")
|
17 |
|
|
|
18 |
|
|
|
|
|
19 |
|
20 |
# Custom CSS for a futuristic look
|
21 |
-
|
22 |
<style>
|
23 |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
|
24 |
|
@@ -117,13 +118,16 @@ st.markdown("""
|
|
117 |
text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF;
|
118 |
}
|
119 |
</style>
|
120 |
-
|
121 |
|
|
|
|
|
122 |
|
123 |
# Constants
|
124 |
AVATAR_WIDTH, AVATAR_HEIGHT = 600, 800
|
125 |
|
126 |
-
|
|
|
127 |
|
128 |
# Set up DialoGPT model
|
129 |
@st.cache_resource
|
|
|
12 |
|
13 |
|
14 |
|
|
|
|
|
15 |
|
16 |
+
import streamlit as st
|
17 |
|
18 |
+
# Set page config for a futuristic look
|
19 |
+
st.set_page_config(page_title="NeuraSense AI", page_icon="🧠", layout="wide")
|
20 |
|
21 |
# Custom CSS for a futuristic look
|
22 |
+
custom_css = """
|
23 |
<style>
|
24 |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
|
25 |
|
|
|
118 |
text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF;
|
119 |
}
|
120 |
</style>
|
121 |
+
"""
|
122 |
|
123 |
+
# Apply the custom CSS
|
124 |
+
st.markdown(custom_css, unsafe_allow_html=True)
|
125 |
|
126 |
# Constants
|
127 |
AVATAR_WIDTH, AVATAR_HEIGHT = 600, 800
|
128 |
|
129 |
+
# Your Streamlit app code goes here
|
130 |
+
st.title("NeuraSense AI")
|
131 |
|
132 |
# Set up DialoGPT model
|
133 |
@st.cache_resource
|