update
Browse files
app.py
CHANGED
@@ -78,7 +78,6 @@ def respond(
|
|
78 |
formatted_response = current_response[:-16]
|
79 |
|
80 |
formatted_response = formatted_response.replace('<', '<').replace('>', '>')
|
81 |
-
formatted_response = formatted_response.replace('<details open>', '<details open>')
|
82 |
formatted_response = formatted_response.replace('<details>', '<details>')
|
83 |
formatted_response = formatted_response.replace('</details>', '</details>')
|
84 |
formatted_response = formatted_response.replace('<summary>', '<summary>')
|
@@ -97,7 +96,6 @@ def respond(
|
|
97 |
|
98 |
formatted_response = current_response
|
99 |
formatted_response = formatted_response.replace('<', '<').replace('>', '>')
|
100 |
-
formatted_response = formatted_response.replace('<details open>', '<details open>')
|
101 |
formatted_response = formatted_response.replace('<details>', '<details>')
|
102 |
formatted_response = formatted_response.replace('</details>', '</details>')
|
103 |
formatted_response = formatted_response.replace('<summary>', '<summary>')
|
|
|
78 |
formatted_response = current_response[:-16]
|
79 |
|
80 |
formatted_response = formatted_response.replace('<', '<').replace('>', '>')
|
|
|
81 |
formatted_response = formatted_response.replace('<details>', '<details>')
|
82 |
formatted_response = formatted_response.replace('</details>', '</details>')
|
83 |
formatted_response = formatted_response.replace('<summary>', '<summary>')
|
|
|
96 |
|
97 |
formatted_response = current_response
|
98 |
formatted_response = formatted_response.replace('<', '<').replace('>', '>')
|
|
|
99 |
formatted_response = formatted_response.replace('<details>', '<details>')
|
100 |
formatted_response = formatted_response.replace('</details>', '</details>')
|
101 |
formatted_response = formatted_response.replace('<summary>', '<summary>')
|