Currently, GPT-generated JSON files are simply parsed and used without checking whether they are error-free. This causes the flask interface to crash, and the user is presented with an error log output.
Fix in line 33 of in jsonToProject.py:
nameAndContentObject = json.loads(nameAndContent, strict=False)
Currently, GPT-generated JSON files are simply parsed and used without checking whether they are error-free. This causes the flask interface to crash, and the user is presented with an error log output.
Fix in line 33 of in
jsonToProject.py:nameAndContentObject = json.loads(nameAndContent, strict=False)