Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def main():
|
|
87 |
unsafe_allow_html=True,
|
88 |
)
|
89 |
|
90 |
-
# Title with futuristic font and color using class
|
91 |
st.title("AI Assistant", class_="futuristic-title")
|
92 |
|
93 |
# Question box with rounded corners and glowing effect (class applied)
|
@@ -100,11 +100,6 @@ def main():
|
|
100 |
response = fetch_response(user_question)
|
101 |
st.write("<div class='response-text'>", unsafe_allow_html=True)
|
102 |
st.write("Response:", response)
|
103 |
-
st.write
|
104 |
|
105 |
-
# Response box with a different color (class applied)
|
106 |
-
|
107 |
-
|
108 |
-
if __name__ == "__main__":
|
109 |
-
main()
|
110 |
|
|
|
87 |
unsafe_allow_html=True,
|
88 |
)
|
89 |
|
90 |
+
# Title with futuristic font and color using class (updated keyword)
|
91 |
st.title("AI Assistant", class_="futuristic-title")
|
92 |
|
93 |
# Question box with rounded corners and glowing effect (class applied)
|
|
|
100 |
response = fetch_response(user_question)
|
101 |
st.write("<div class='response-text'>", unsafe_allow_html=True)
|
102 |
st.write("Response:", response)
|
103 |
+
st.write
|
104 |
|
|
|
|
|
|
|
|
|
|
|
105 |
|