Is there an issue with Fix.OpenAI not working with messages that contain lists of other messages? It doesn't seem like it is recoursing into fields.
Here's an example of OpenAI json that didn't get fixed.
{
"cells": [
{
"call_id": "1",
"doc_results": [],
"execution_summary": null,
"kind": "CELL_KIND_CODE",
"language_id": "python",
"metadata": [
{
"key": "agent/summary",
"value": "A simple hello world program."
}
],
"outputs": [],
"ref_id": "",
"role": "CELL_ROLE_USER",
"text_range": null,
"value": "print('Hello, World!')"
}
]
}
Here cells is a list of items and FixOpenAI doesn't seem to be recoursing into the list; so metdata doesn't get fixed.
Is there an issue with Fix.OpenAI not working with messages that contain lists of other messages? It doesn't seem like it is recoursing into fields.
Here's an example of OpenAI json that didn't get fixed.
Here cells is a list of items and FixOpenAI doesn't seem to be recoursing into the list; so metdata doesn't get fixed.