Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -194,7 +194,8 @@ def main():
|
|
| 194 |
with open("chat.txt", "a+") as f:
|
| 195 |
f.seek(0)
|
| 196 |
chat_history = f.read()
|
| 197 |
-
st.text(chat_history)
|
|
|
|
| 198 |
|
| 199 |
countdown = st.empty()
|
| 200 |
t = 60
|
|
@@ -208,7 +209,8 @@ def main():
|
|
| 208 |
with open("chat.txt", "a+") as f:
|
| 209 |
f.seek(0)
|
| 210 |
chat_history = f.read()
|
| 211 |
-
st.text(chat_history)
|
|
|
|
| 212 |
t = 60
|
| 213 |
|
| 214 |
if __name__ == "__main__":
|
|
|
|
| 194 |
with open("chat.txt", "a+") as f:
|
| 195 |
f.seek(0)
|
| 196 |
chat_history = f.read()
|
| 197 |
+
#st.text(chat_history)
|
| 198 |
+
st.markdown(chat_history)
|
| 199 |
|
| 200 |
countdown = st.empty()
|
| 201 |
t = 60
|
|
|
|
| 209 |
with open("chat.txt", "a+") as f:
|
| 210 |
f.seek(0)
|
| 211 |
chat_history = f.read()
|
| 212 |
+
#st.text(chat_history)
|
| 213 |
+
st.markdown(chat_history)
|
| 214 |
t = 60
|
| 215 |
|
| 216 |
if __name__ == "__main__":
|