Skip to content

Commit 01ece5a

Browse files
Merge branch 'main' into dev/valenradovich/parse-return-validationerror
2 parents fb29cb3 + f66d2e6 commit 01ece5a

File tree

96 files changed

+4957
-595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+4957
-595
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
pull_request:
77
branches:
88
- main
9+
- next
910

1011
jobs:
1112
lint:

.github/workflows/create-releases.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Create releases
2+
on:
3+
schedule:
4+
- cron: '0 5 * * *' # every day at 5am UTC
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
release:
11+
name: release
12+
if: github.ref == 'refs/heads/main' && github.repository == 'openai/openai-python'
13+
runs-on: ubuntu-latest
14+
environment: publish
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- uses: stainless-api/trigger-release-please@v1
20+
id: release
21+
with:
22+
repo: ${{ github.event.repository.full_name }}
23+
stainless-api-key: ${{ secrets.STAINLESS_API_KEY }}
24+
25+
- name: Install Rye
26+
if: ${{ steps.release.outputs.releases_created }}
27+
run: |
28+
curl -sSf https://rye.astral.sh/get | bash
29+
echo "$HOME/.rye/shims" >> $GITHUB_PATH
30+
env:
31+
RYE_VERSION: '0.44.0'
32+
RYE_INSTALL_OPTION: '--yes'
33+
34+
- name: Publish to PyPI
35+
if: ${{ steps.release.outputs.releases_created }}
36+
run: |
37+
bash ./bin/publish-pypi
38+
env:
39+
PYPI_TOKEN: ${{ secrets.OPENAI_PYPI_TOKEN || secrets.PYPI_TOKEN }}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ dist
1414
.envrc
1515
codegen.log
1616
Brewfile.lock.json
17+
18+
.DS_Store
19+
20+
examples/*.mp3

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.66.4"
2+
".": "1.68.2"
33
}

.stats.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
configured_endpoints: 81
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-c8579861bc21d4d2155a5b9e8e7d54faee8083730673c4d32cbbe573d7fb4116.yml
1+
configured_endpoints: 82
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-5ad6884898c07591750dde560118baf7074a59aecd1f367f930c5e42b04e848a.yml

CHANGELOG.md

+54
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,59 @@
11
# Changelog
22

3+
## 1.68.2 (2025-03-21)
4+
5+
Full Changelog: [v1.68.1...v1.68.2](https://github.com/openai/openai-python/compare/v1.68.1...v1.68.2)
6+
7+
### Refactors
8+
9+
* **package:** rename audio extra to voice_helpers ([2dd6cb8](https://github.com/openai/openai-python/commit/2dd6cb87489fe12c5e45128f44d985c3f49aba1d))
10+
11+
## 1.68.1 (2025-03-21)
12+
13+
Full Changelog: [v1.68.0...v1.68.1](https://github.com/openai/openai-python/compare/v1.68.0...v1.68.1)
14+
15+
### Bug Fixes
16+
17+
* **client:** remove duplicate types ([#2235](https://github.com/openai/openai-python/issues/2235)) ([063f7d0](https://github.com/openai/openai-python/commit/063f7d0684c350ca9d766e2cb150233a22a623c8))
18+
* **helpers/audio:** remove duplicative module ([f253d04](https://github.com/openai/openai-python/commit/f253d0415145f2c4904ea2e7b389d31d94e45a54))
19+
* **package:** make sounddevice and numpy optional dependencies ([8b04453](https://github.com/openai/openai-python/commit/8b04453f0483736c13f0209a9f8f3618bc0e86c9))
20+
21+
22+
### Chores
23+
24+
* **ci:** run workflows on next too ([67f89d4](https://github.com/openai/openai-python/commit/67f89d478aab780d1481c9bf6682c6633e431137))
25+
26+
## 1.68.0 (2025-03-20)
27+
28+
Full Changelog: [v1.67.0...v1.68.0](https://github.com/openai/openai-python/compare/v1.67.0...v1.68.0)
29+
30+
### Features
31+
32+
* add audio helpers ([423655c](https://github.com/openai/openai-python/commit/423655ca9077cfd258f1e52f6eb386fc8307fa5f))
33+
* **api:** new models for TTS, STT, + new audio features for Realtime ([#2232](https://github.com/openai/openai-python/issues/2232)) ([ab5192d](https://github.com/openai/openai-python/commit/ab5192d0a7b417ade622ec94dd48f86beb90692c))
34+
35+
## 1.67.0 (2025-03-19)
36+
37+
Full Changelog: [v1.66.5...v1.67.0](https://github.com/openai/openai-python/compare/v1.66.5...v1.67.0)
38+
39+
### Features
40+
41+
* **api:** o1-pro now available through the API ([#2228](https://github.com/openai/openai-python/issues/2228)) ([40a19d8](https://github.com/openai/openai-python/commit/40a19d8592c1767d6318230fc93e37c360d1bcd1))
42+
43+
## 1.66.5 (2025-03-18)
44+
45+
Full Changelog: [v1.66.4...v1.66.5](https://github.com/openai/openai-python/compare/v1.66.4...v1.66.5)
46+
47+
### Bug Fixes
48+
49+
* **types:** improve responses type names ([#2224](https://github.com/openai/openai-python/issues/2224)) ([5f7beb8](https://github.com/openai/openai-python/commit/5f7beb873af5ccef2551f34ab3ef098e099ce9c6))
50+
51+
52+
### Chores
53+
54+
* **internal:** add back releases workflow ([c71d4c9](https://github.com/openai/openai-python/commit/c71d4c918eab3532b36ea944b0c4069db6ac2d38))
55+
* **internal:** codegen related update ([#2222](https://github.com/openai/openai-python/issues/2222)) ([f570d91](https://github.com/openai/openai-python/commit/f570d914a16cb5092533e32dfd863027d378c0b5))
56+
357
## 1.66.4 (2025-03-17)
458

559
Full Changelog: [v1.66.3...v1.66.4](https://github.com/openai/openai-python/compare/v1.66.3...v1.66.4)

api.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
```python
44
from openai.types import (
5+
AllModels,
56
ChatModel,
67
ComparisonFilter,
78
CompoundFilter,
@@ -14,6 +15,7 @@ from openai.types import (
1415
ResponseFormatJSONObject,
1516
ResponseFormatJSONSchema,
1617
ResponseFormatText,
18+
ResponsesModel,
1719
)
1820
```
1921

@@ -149,7 +151,11 @@ Types:
149151
```python
150152
from openai.types.audio import (
151153
Transcription,
154+
TranscriptionInclude,
152155
TranscriptionSegment,
156+
TranscriptionStreamEvent,
157+
TranscriptionTextDeltaEvent,
158+
TranscriptionTextDoneEvent,
153159
TranscriptionVerbose,
154160
TranscriptionWord,
155161
TranscriptionCreateResponse,
@@ -336,7 +342,9 @@ from openai.types.beta.realtime import (
336342
ConversationItemDeleteEvent,
337343
ConversationItemDeletedEvent,
338344
ConversationItemInputAudioTranscriptionCompletedEvent,
345+
ConversationItemInputAudioTranscriptionDeltaEvent,
339346
ConversationItemInputAudioTranscriptionFailedEvent,
347+
ConversationItemRetrieveEvent,
340348
ConversationItemTruncateEvent,
341349
ConversationItemTruncatedEvent,
342350
ConversationItemWithReference,
@@ -373,6 +381,8 @@ from openai.types.beta.realtime import (
373381
SessionCreatedEvent,
374382
SessionUpdateEvent,
375383
SessionUpdatedEvent,
384+
TranscriptionSessionUpdate,
385+
TranscriptionSessionUpdatedEvent,
376386
)
377387
```
378388

@@ -388,6 +398,18 @@ Methods:
388398

389399
- <code title="post /realtime/sessions">client.beta.realtime.sessions.<a href="./src/openai/resources/beta/realtime/sessions.py">create</a>(\*\*<a href="src/openai/types/beta/realtime/session_create_params.py">params</a>) -> <a href="./src/openai/types/beta/realtime/session_create_response.py">SessionCreateResponse</a></code>
390400

401+
### TranscriptionSessions
402+
403+
Types:
404+
405+
```python
406+
from openai.types.beta.realtime import TranscriptionSession
407+
```
408+
409+
Methods:
410+
411+
- <code title="post /realtime/transcription_sessions">client.beta.realtime.transcription_sessions.<a href="./src/openai/resources/beta/realtime/transcription_sessions.py">create</a>(\*\*<a href="src/openai/types/beta/realtime/transcription_session_create_params.py">params</a>) -> <a href="./src/openai/types/beta/realtime/transcription_session.py">TranscriptionSession</a></code>
412+
391413
## Assistants
392414

393415
Types:
@@ -605,6 +627,8 @@ from openai.types.responses import (
605627
ResponseCodeInterpreterToolCall,
606628
ResponseCompletedEvent,
607629
ResponseComputerToolCall,
630+
ResponseComputerToolCallOutputItem,
631+
ResponseComputerToolCallOutputScreenshot,
608632
ResponseContent,
609633
ResponseContentPartAddedEvent,
610634
ResponseContentPartDoneEvent,
@@ -621,6 +645,8 @@ from openai.types.responses import (
621645
ResponseFunctionCallArgumentsDeltaEvent,
622646
ResponseFunctionCallArgumentsDoneEvent,
623647
ResponseFunctionToolCall,
648+
ResponseFunctionToolCallItem,
649+
ResponseFunctionToolCallOutputItem,
624650
ResponseFunctionWebSearch,
625651
ResponseInProgressEvent,
626652
ResponseIncludable,
@@ -632,7 +658,9 @@ from openai.types.responses import (
632658
ResponseInputImage,
633659
ResponseInputItem,
634660
ResponseInputMessageContentList,
661+
ResponseInputMessageItem,
635662
ResponseInputText,
663+
ResponseItem,
636664
ResponseOutputAudio,
637665
ResponseOutputItem,
638666
ResponseOutputItemAddedEvent,
@@ -677,4 +705,4 @@ from openai.types.responses import ResponseItemList
677705

678706
Methods:
679707

680-
- <code title="get /responses/{response_id}/input_items">client.responses.input_items.<a href="./src/openai/resources/responses/input_items.py">list</a>(response_id, \*\*<a href="src/openai/types/responses/input_item_list_params.py">params</a>) -> SyncCursorPage[Data]</code>
708+
- <code title="get /responses/{response_id}/input_items">client.responses.input_items.<a href="./src/openai/resources/responses/input_items.py">list</a>(response_id, \*\*<a href="src/openai/types/responses/input_item_list_params.py">params</a>) -> <a href="./src/openai/types/responses/response_item.py">SyncCursorPage[ResponseItem]</a></code>

examples/audio.py

-26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env rye run python
22

3-
import time
43
from pathlib import Path
54

65
from openai import OpenAI
@@ -12,8 +11,6 @@
1211

1312

1413
def main() -> None:
15-
stream_to_speakers()
16-
1714
# Create text-to-speech audio file
1815
with openai.audio.speech.with_streaming_response.create(
1916
model="tts-1",
@@ -37,28 +34,5 @@ def main() -> None:
3734
print(translation.text)
3835

3936

40-
def stream_to_speakers() -> None:
41-
import pyaudio
42-
43-
player_stream = pyaudio.PyAudio().open(format=pyaudio.paInt16, channels=1, rate=24000, output=True)
44-
45-
start_time = time.time()
46-
47-
with openai.audio.speech.with_streaming_response.create(
48-
model="tts-1",
49-
voice="alloy",
50-
response_format="pcm", # similar to WAV, but without a header chunk at the start.
51-
input="""I see skies of blue and clouds of white
52-
The bright blessed days, the dark sacred nights
53-
And I think to myself
54-
What a wonderful world""",
55-
) as response:
56-
print(f"Time to first byte: {int((time.time() - start_time) * 1000)}ms")
57-
for chunk in response.iter_bytes(chunk_size=1024):
58-
player_stream.write(chunk)
59-
60-
print(f"Done in {int((time.time() - start_time) * 1000)}ms.")
61-
62-
6337
if __name__ == "__main__":
6438
main()

examples/speech_to_text.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env rye run python
2+
3+
import asyncio
4+
5+
from openai import AsyncOpenAI
6+
from openai.helpers import Microphone
7+
8+
# gets OPENAI_API_KEY from your environment variables
9+
openai = AsyncOpenAI()
10+
11+
12+
async def main() -> None:
13+
print("Recording for the next 10 seconds...")
14+
recording = await Microphone(timeout=10).record()
15+
print("Recording complete")
16+
transcription = await openai.audio.transcriptions.create(
17+
model="whisper-1",
18+
file=recording,
19+
)
20+
21+
print(transcription.text)
22+
23+
24+
if __name__ == "__main__":
25+
asyncio.run(main())

examples/text_to_speech.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/usr/bin/env rye run python
2+
3+
import time
4+
import asyncio
5+
6+
from openai import AsyncOpenAI
7+
from openai.helpers import LocalAudioPlayer
8+
9+
# gets OPENAI_API_KEY from your environment variables
10+
openai = AsyncOpenAI()
11+
12+
13+
async def main() -> None:
14+
start_time = time.time()
15+
16+
async with openai.audio.speech.with_streaming_response.create(
17+
model="tts-1",
18+
voice="alloy",
19+
response_format="pcm", # similar to WAV, but without a header chunk at the start.
20+
input="""I see skies of blue and clouds of white
21+
The bright blessed days, the dark sacred nights
22+
And I think to myself
23+
What a wonderful world""",
24+
) as response:
25+
print(f"Time to first byte: {int((time.time() - start_time) * 1000)}ms")
26+
await LocalAudioPlayer().play(response)
27+
print(f"Time to play: {int((time.time() - start_time) * 1000)}ms")
28+
29+
30+
if __name__ == "__main__":
31+
asyncio.run(main())

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openai"
3-
version = "1.66.4"
3+
version = "1.68.2"
44
description = "The official Python library for the openai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -45,6 +45,7 @@ openai = "openai.cli:main"
4545
[project.optional-dependencies]
4646
realtime = ["websockets >= 13, < 15"]
4747
datalib = ["numpy >= 1", "pandas >= 1.2.3", "pandas-stubs >= 1.1.0.11"]
48+
voice_helpers = ["sounddevice>=0.5.1", "numpy>=2.0.2"]
4849

4950
[tool.rye]
5051
managed = true

requirements-dev.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ certifi==2023.7.22
3333
# via requests
3434
cffi==1.16.0
3535
# via cryptography
36+
# via sounddevice
3637
charset-normalizer==3.3.2
3738
# via requests
3839
click==8.1.7
@@ -92,7 +93,7 @@ nest-asyncio==1.6.0
9293
nodeenv==1.8.0
9394
# via pyright
9495
nox==2023.4.22
95-
numpy==1.26.3
96+
numpy==2.0.2
9697
# via openai
9798
# via pandas
9899
# via pandas-stubs
@@ -102,7 +103,7 @@ packaging==23.2
102103
# via black
103104
# via nox
104105
# via pytest
105-
pandas==2.1.4
106+
pandas==2.2.3
106107
# via openai
107108
pandas-stubs==2.1.4.231227
108109
# via openai
@@ -154,6 +155,8 @@ sniffio==1.3.0
154155
# via trio
155156
sortedcontainers==2.4.0
156157
# via trio
158+
sounddevice==0.5.1
159+
# via openai
157160
time-machine==2.9.0
158161
toml==0.10.2
159162
# via inline-snapshot

0 commit comments

Comments
 (0)