Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -329,7 +329,7 @@ def create_file(filename, prompt, response, should_save=True):
|
|
329 |
|
330 |
# Save the combined content to a Markdown file
|
331 |
if should_save:
|
332 |
-
with open(f"{base_filename}
|
333 |
file.write(combined_content)
|
334 |
|
335 |
|
|
|
329 |
|
330 |
# Save the combined content to a Markdown file
|
331 |
if should_save:
|
332 |
+
with open(f"{base_filename}.md", 'w') as file:
|
333 |
file.write(combined_content)
|
334 |
|
335 |
|