Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -281,7 +281,8 @@ def create_file(filename, prompt, response, should_save=True):
|
|
281 |
if not should_save:
|
282 |
return
|
283 |
base_filename, ext = os.path.splitext(filename)
|
284 |
-
has_python_code =
|
|
|
285 |
if ext in ['.txt', '.htm', '.md']:
|
286 |
with open(f"{base_filename}.md", 'w') as file:
|
287 |
content = prompt.strip() + '\r\n' + response
|
|
|
281 |
if not should_save:
|
282 |
return
|
283 |
base_filename, ext = os.path.splitext(filename)
|
284 |
+
has_python_code = re.search(r"```python([\s\S]*?)```", prompt.strip() + '\r\n' + response)
|
285 |
+
has_python_code = bool(re.search(r"```python([\s\S]*?)```", prompt.strip() + '\r\n' + response))
|
286 |
if ext in ['.txt', '.htm', '.md']:
|
287 |
with open(f"{base_filename}.md", 'w') as file:
|
288 |
content = prompt.strip() + '\r\n' + response
|