Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -100,6 +100,13 @@ 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 |
|
|
|
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("</div>", unsafe_allow_html=True) # Added the missing closing tag
|
104 |
+
|
105 |
+
# Response box with a different color (class applied)
|
106 |
+
|
107 |
+
|
108 |
+
if __name__ == "__main__":
|
109 |
+
main()
|
110 |
+
|
111 |
|
112 |
|