Spaces:
Runtime error
Runtime error
File size: 649 Bytes
5a7ab71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"""
Merge two conversation files into one
Usage: python3 -m fastchat.data.merge --in file1.json file2.json --out merged.json
"""
import argparse
import json
from typing import Dict, Sequence, Optional
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--in-file", type=str, required=True, nargs="+")
parser.add_argument("--out-file", type=str, default="merged.json")
args = parser.parse_args()
new_content = []
for in_file in args.in_file:
content = json.load(open(in_file, "r"))
new_content.extend(content)
json.dump(new_content, open(args.out_file, "w"), indent=2)
|