File size: 294 Bytes
a295b90
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import json

def export_json(answer, evidence, weights):
    data = {
        "answer": answer,
        "evidence": evidence,
        "mote_weights": weights
    }

    file_path = "esg_output.json"
    with open(file_path, "w") as f:
        json.dump(data, f, indent=4)

    return file_path