Update script_for_automation.py
Browse files- script_for_automation.py +1 -1
script_for_automation.py
CHANGED
|
@@ -590,7 +590,7 @@ def drive_process():
|
|
| 590 |
with open(json_file_gold, 'w') as f:
|
| 591 |
json.dump(gold_standard_json, f, indent=2)
|
| 592 |
with open(json_file_generated, 'w') as f:
|
| 593 |
-
json.dump(
|
| 594 |
|
| 595 |
# Optionally save differences as a separate file
|
| 596 |
differences_file = os.path.join(recipe_folder, f"recipe_{recipe_dict['recipe_id']}_data_{key}_differences.json")
|
|
|
|
| 590 |
with open(json_file_gold, 'w') as f:
|
| 591 |
json.dump(gold_standard_json, f, indent=2)
|
| 592 |
with open(json_file_generated, 'w') as f:
|
| 593 |
+
json.dump(comparison_json, f, indent=2)
|
| 594 |
|
| 595 |
# Optionally save differences as a separate file
|
| 596 |
differences_file = os.path.join(recipe_folder, f"recipe_{recipe_dict['recipe_id']}_data_{key}_differences.json")
|