(data, output_file='./alignment_bench.json')
| 64 | |
| 65 | |
| 66 | def save_as_json(data, output_file='./alignment_bench.json'): |
| 67 | with open(output_file, 'w', encoding='utf-8') as file: |
| 68 | json.dump(data, file, indent=4, ensure_ascii=False) |
| 69 | |
| 70 | |
| 71 | def parse_args(): |
no test coverage detected