You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove incorrect id and model properties from CreateEditResponse
The `id` and `model` properties are not returned by the `POST` `/edits` endpoint.
Example JSON response from the `/edits` endpoint:
```
{
"object": "edit",
"created": 1675740853,
"choices": [
{
"text": "Write a tagline for an ice cream shop. sweetest place.\n",
"index": 0
}
],
"usage": {
"prompt_tokens": 27,
"completion_tokens": 35,
"total_tokens": 62
}
}
```
Reported in #7
0 commit comments