Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ def download_report():
|
|
57 |
message = response.choices[0].message.content
|
58 |
|
59 |
report_file_path = f"/tmp/report.txt"
|
60 |
-
print('CWD : 'os.getcwd())
|
61 |
with open(report_file_path,"w") as file:
|
62 |
file.write(message)
|
63 |
|
|
|
57 |
message = response.choices[0].message.content
|
58 |
|
59 |
report_file_path = f"/tmp/report.txt"
|
60 |
+
print('CWD : ',os.getcwd())
|
61 |
with open(report_file_path,"w") as file:
|
62 |
file.write(message)
|
63 |
|