Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -619,7 +619,7 @@ def reset_chat(histories, memory_state, flags_state):
|
|
| 619 |
|
| 620 |
def load_css(path="style.css") -> str:
|
| 621 |
try:
|
| 622 |
-
with open(path, "r", encoding
|
| 623 |
return f.read()
|
| 624 |
except FileNotFounError:
|
| 625 |
return ""
|
|
|
|
| 619 |
|
| 620 |
def load_css(path="style.css") -> str:
|
| 621 |
try:
|
| 622 |
+
with open(path, "r", encoding="utf-8") as f:
|
| 623 |
return f.read()
|
| 624 |
except FileNotFounError:
|
| 625 |
return ""
|