Merge pull request #256 from fabricehong/fix_fix-json-wrong-interpretation

fix(json-jixer): enclose arguments in a python multi-line string so t…
This commit is contained in:
Toran Bruce Richards
2023-04-06 12:06:28 +01:00
committed by GitHub

View File

@@ -52,7 +52,7 @@ def fix_and_parse_json(json_str: str, try_to_fix_with_gpt: bool = True):
def fix_json(json_str: str, schema: str, debug=False) -> str:
# Try to fix the JSON using gpt:
function_string = "def fix_json(json_str: str, schema:str=None) -> str:"
args = [json_str, schema]
args = [f"'''{json_str}'''", f"'''{schema}'''"]
description_string = """Fixes the provided JSON string to make it parseable and fully complient with the provided schema.\n If an object or field specifed in the schema isn't contained within the correct JSON, it is ommited.\n This function is brilliant at guessing when the format is incorrect."""
# If it doesn't already start with a "`", add one: