Matt Fisher
Matt Fisher
@pavlov99 since Django 2.0, [django.conf.urls.url()](https://docs.djangoproject.com/en/3.2/ref/urls/#url) has been an alias of [django.urls.re_path()](https://docs.djangoproject.com/en/3.2/ref/urls/#django.urls.re_path) for backwards compatibility. It was deprecated in 3.1 and is removed in 4.0.
Also seeing this bug, Django 1.8.9, django-polymorphic 0.8.1 Additionally, when the delete is triggered by a cascade, overriding A's `delete()` method won't help. ``` Z
I just ran into this too. According to the [spec for the paths object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#paths-object), the path should be appended to the server object's url > The field name MUST begin...
I think I've run into this same problem using msw with Storybook - I'm trying to set up per-story handlers to display loading and loaded component states [similar to this](https://blog.logrocket.com/using-storybook-and-mock-service-worker-for-mocked-api-responses/#attachment_33814),...
Seeing the same error with PyCharm 2023.1.2
I checked and the Content-Type header on the response is always set correctly (at least for the audio transcription responses), so we can deduce whether to json-decode within `APIRequestor._interpret_response` without...
I'm not a maintainer of the project or anything, just another user! Though as I said [here](https://github.com/openai/openai-python/issues/243#issuecomment-1457398603), I think this will fix the issue without further code changes. The Content-Type...
I've manually tested the change and it works for all the different audio response formats. I can't verify that it doesn't break any other endpoints though.
@guaguaguaxia that would make sense if the Audio module was the only code that consumed the `APIRequestor` class, but it's not. `APIRequestor` is used all through the codebase, so if...
Might want to roll back the whitespace changes in `openai/util.py`