Spaces:
Runtime error
Runtime error
def save_report(hypothesis, result): | |
text = f"## Hypothesis\n{hypothesis}\n\n## Simulation Result\n{result}\n\n" | |
with open("output/reports.md", "a") as f: | |
f.write(text) | |
return "output/reports.md" |