JohnAlexander23 commited on
Commit
c8c0952
·
verified ·
1 Parent(s): 886446d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
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