Batch file documentation error - and many more documentation issues added

For the create image edit endpoint, API Reference shows this parameter:

image

However, it simply cannot be passed to the API:

Trying “quality”: “standard” against dall-e-2 and the Python SDK library:

        if model == "gpt-image-1":
            image_params.pop("response_format", None)
        elif model == "dall-e-2":
            image_params.pop("quality", None)
            image_params.pop("background", None)
            image_params["quality"] = "standard"  # trying this alleged default
        else:
            raise ValueError("edit_image received unknown model")

We observe the documentation to present a falsehood.

Others have reported the same on gpt-images-1: no quality support of low, medium, high like the documentation also presents.


The search API has no Python documentation, and the format/type the discovered SDK method is returning is quite different than the underlying JSON.

Showing here: My metadata isn't correctly processed when uploading a JSON file - #2 by _j