openai/openai-python
Publicmirrored from https://github.com/openai/openai-pythonAvailable
README.md
811lines · modeblame
08b8179aDavid Schnurr2 years ago | 1 | # OpenAI Python API library |
3c6d4cd6Greg Brockman5 years ago | 2 | |
08b8179aDavid Schnurr2 years ago | 3 | [](https://pypi.org/project/openai/) |
3c6d4cd6Greg Brockman5 years ago | 4 | |
cb88c2f0stainless-app[bot]1 years ago | 5 | The OpenAI Python library provides convenient access to the OpenAI REST API from any Python 3.8+ |
08b8179aDavid Schnurr2 years ago | 6 | application. The library includes type definitions for all request params and response fields, |
| 7 | and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx). | |
| 8 | | |
| 9 | It is generated from our [OpenAPI specification](https://github.com/openai/openai-openapi) with [Stainless](https://stainlessapi.com/). | |
| 10 | | |
| 11 | ## Documentation | |
| 12 | | |
2e8ea52bstainless-app[bot]1 years ago | 13 | The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). The full API of this library can be found in [api.md](api.md). |
3c6d4cd6Greg Brockman5 years ago | 14 | |
| 15 | ## Installation | |
| 16 | | |
448ac7d0Stainless Bot2 years ago | 17 | > [!IMPORTANT] |
db6cd764Stainless Bot2 years ago | 18 | > The SDK was rewritten in v1, which was released November 6th 2023. See the [v1 migration guide](https://github.com/openai/openai-python/discussions/742), which includes scripts to automatically update your code. |
448ac7d0Stainless Bot2 years ago | 19 | |
3c6d4cd6Greg Brockman5 years ago | 20 | ```sh |
1879c97aStainless Bot2 years ago | 21 | # install from PyPI |
6d217096Robert Craigie2 years ago | 22 | pip install openai |
3c6d4cd6Greg Brockman5 years ago | 23 | ``` |
| 24 | | |
08b8179aDavid Schnurr2 years ago | 25 | ## Usage |
| 26 | | |
986f3128Stainless Bot2 years ago | 27 | The full API of this library can be found in [api.md](api.md). |
376dd199Logan Kilpatrick2 years ago | 28 | |
| 29 | ```python | |
fb5ba01cStainless Bot2 years ago | 30 | import os |
08b8179aDavid Schnurr2 years ago | 31 | from openai import OpenAI |
| 32 | | |
| 33 | client = OpenAI( | |
6c6dfb19stainless-app[bot]1 years ago | 34 | api_key=os.environ.get("OPENAI_API_KEY"), # This is the default and can be omitted |
08b8179aDavid Schnurr2 years ago | 35 | ) |
| 36 | | |
| 37 | chat_completion = client.chat.completions.create( | |
| 38 | messages=[ | |
| 39 | { | |
| 40 | "role": "user", | |
| 41 | "content": "Say this is a test", | |
| 42 | } | |
| 43 | ], | |
23444ed9Stainless Bot1 years ago | 44 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 45 | ) |
376dd199Logan Kilpatrick2 years ago | 46 | ``` |
| 47 | | |
08b8179aDavid Schnurr2 years ago | 48 | While you can provide an `api_key` keyword argument, |
| 49 | we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/) | |
| 50 | to add `OPENAI_API_KEY="My API Key"` to your `.env` file | |
| 51 | so that your API Key is not stored in source control. | |
3c6d4cd6Greg Brockman5 years ago | 52 | |
192b8f2bDan Corin1 years ago | 53 | ### Vision |
| 54 | | |
| 55 | With a hosted image: | |
| 56 | | |
| 57 | ```python | |
| 58 | response = client.chat.completions.create( | |
| 59 | model="gpt-4o-mini", | |
| 60 | messages=[ | |
| 61 | { | |
| 62 | "role": "user", | |
| 63 | "content": [ | |
| 64 | {"type": "text", "text": prompt}, | |
| 65 | { | |
| 66 | "type": "image_url", | |
| 67 | "image_url": {"url": f"{img_url}"}, | |
| 68 | }, | |
| 69 | ], | |
| 70 | } | |
| 71 | ], | |
| 72 | ) | |
| 73 | ``` | |
| 74 | | |
| 75 | With the image as a base64 encoded string: | |
| 76 | | |
| 77 | ```python | |
| 78 | response = client.chat.completions.create( | |
| 79 | model="gpt-4o-mini", | |
| 80 | messages=[ | |
| 81 | { | |
| 82 | "role": "user", | |
| 83 | "content": [ | |
| 84 | {"type": "text", "text": prompt}, | |
| 85 | { | |
| 86 | "type": "image_url", | |
| 87 | "image_url": {"url": f"data:{img_type};base64,{img_b64_str}"}, | |
| 88 | }, | |
| 89 | ], | |
| 90 | } | |
| 91 | ], | |
| 92 | ) | |
| 93 | ``` | |
| 94 | | |
595f3b36Stainless Bot2 years ago | 95 | ### Polling Helpers |
| 96 | | |
5b20698dStainless Bot2 years ago | 97 | When interacting with the API some actions such as starting a Run and adding files to vector stores are asynchronous and take time to complete. The SDK includes |
595f3b36Stainless Bot2 years ago | 98 | helper functions which will poll the status until it reaches a terminal state and then return the resulting object. |
137f38baNino Risteski2 years ago | 99 | If an API method results in an action that could benefit from polling there will be a corresponding version of the |
595f3b36Stainless Bot2 years ago | 100 | method ending in '\_and_poll'. |
| 101 | | |
| 102 | For instance to create a Run and poll until it reaches a terminal state you can run: | |
| 103 | | |
| 104 | ```python | |
| 105 | run = client.beta.threads.runs.create_and_poll( | |
| 106 | thread_id=thread.id, | |
| 107 | assistant_id=assistant.id, | |
| 108 | ) | |
| 109 | ``` | |
| 110 | | |
| 111 | More information on the lifecycle of a Run can be found in the [Run Lifecycle Documentation](https://platform.openai.com/docs/assistants/how-it-works/run-lifecycle) | |
| 112 | | |
5b20698dStainless Bot2 years ago | 113 | ### Bulk Upload Helpers |
| 114 | | |
137f38baNino Risteski2 years ago | 115 | When creating and interacting with vector stores, you can use polling helpers to monitor the status of operations. |
5b20698dStainless Bot2 years ago | 116 | For convenience, we also provide a bulk upload helper to allow you to simultaneously upload several files at once. |
| 117 | | |
| 118 | ```python | |
| 119 | sample_files = [Path("sample-paper.pdf"), ...] | |
| 120 | | |
| 121 | batch = await client.vector_stores.file_batches.upload_and_poll( | |
| 122 | store.id, | |
| 123 | files=sample_files, | |
| 124 | ) | |
| 125 | ``` | |
| 126 | | |
5cfb125aStainless Bot2 years ago | 127 | ### Streaming Helpers |
| 128 | | |
137f38baNino Risteski2 years ago | 129 | The SDK also includes helpers to process streams and handle incoming events. |
5cfb125aStainless Bot2 years ago | 130 | |
| 131 | ```python | |
595f3b36Stainless Bot2 years ago | 132 | with client.beta.threads.runs.stream( |
5cfb125aStainless Bot2 years ago | 133 | thread_id=thread.id, |
| 134 | assistant_id=assistant.id, | |
| 135 | instructions="Please address the user as Jane Doe. The user has a premium account.", | |
| 136 | ) as stream: | |
| 137 | for event in stream: | |
| 138 | # Print the text from text delta events | |
| 139 | if event.type == "thread.message.delta" and event.data.delta.content: | |
| 140 | print(event.data.delta.content[0].text) | |
| 141 | ``` | |
| 142 | | |
| 143 | More information on streaming helpers can be found in the dedicated documentation: [helpers.md](helpers.md) | |
| 144 | | |
08b8179aDavid Schnurr2 years ago | 145 | ## Async usage |
3c6d4cd6Greg Brockman5 years ago | 146 | |
08b8179aDavid Schnurr2 years ago | 147 | Simply import `AsyncOpenAI` instead of `OpenAI` and use `await` with each API call: |
ede08829Jakub Roztocil3 years ago | 148 | |
08b8179aDavid Schnurr2 years ago | 149 | ```python |
fb5ba01cStainless Bot2 years ago | 150 | import os |
08b8179aDavid Schnurr2 years ago | 151 | import asyncio |
| 152 | from openai import AsyncOpenAI | |
ede08829Jakub Roztocil3 years ago | 153 | |
08b8179aDavid Schnurr2 years ago | 154 | client = AsyncOpenAI( |
6c6dfb19stainless-app[bot]1 years ago | 155 | api_key=os.environ.get("OPENAI_API_KEY"), # This is the default and can be omitted |
08b8179aDavid Schnurr2 years ago | 156 | ) |
ede08829Jakub Roztocil3 years ago | 157 | |
| 158 | | |
08b8179aDavid Schnurr2 years ago | 159 | async def main() -> None: |
| 160 | chat_completion = await client.chat.completions.create( | |
| 161 | messages=[ | |
| 162 | { | |
| 163 | "role": "user", | |
| 164 | "content": "Say this is a test", | |
| 165 | } | |
| 166 | ], | |
23444ed9Stainless Bot1 years ago | 167 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 168 | ) |
ede08829Jakub Roztocil3 years ago | 169 | |
| 170 | | |
08b8179aDavid Schnurr2 years ago | 171 | asyncio.run(main()) |
2b21516eAtty Eleti3 years ago | 172 | ``` |
ede08829Jakub Roztocil3 years ago | 173 | |
08b8179aDavid Schnurr2 years ago | 174 | Functionality between the synchronous and asynchronous clients is otherwise identical. |
| 175 | | |
2b23eb53Stainless Bot2 years ago | 176 | ## Streaming responses |
08b8179aDavid Schnurr2 years ago | 177 | |
| 178 | We provide support for streaming responses using Server Side Events (SSE). | |
d53d9efbRachel Lim5 years ago | 179 | |
08b8179aDavid Schnurr2 years ago | 180 | ```python |
| 181 | from openai import OpenAI | |
| 182 | | |
| 183 | client = OpenAI() | |
d53d9efbRachel Lim5 years ago | 184 | |
08b8179aDavid Schnurr2 years ago | 185 | stream = client.chat.completions.create( |
23444ed9Stainless Bot1 years ago | 186 | messages=[ |
| 187 | { | |
| 188 | "role": "user", | |
| 189 | "content": "Say this is a test", | |
| 190 | } | |
| 191 | ], | |
| 192 | model="gpt-4o", | |
08b8179aDavid Schnurr2 years ago | 193 | stream=True, |
| 194 | ) | |
54c7c512Stainless Bot2 years ago | 195 | for chunk in stream: |
a3da0196Stainless Bot2 years ago | 196 | print(chunk.choices[0].delta.content or "", end="") |
d53d9efbRachel Lim5 years ago | 197 | ``` |
| 198 | | |
08b8179aDavid Schnurr2 years ago | 199 | The async client uses the exact same interface. |
d53d9efbRachel Lim5 years ago | 200 | |
| 201 | ```python | |
db0aa22cAdel Basli1 years ago | 202 | import asyncio |
08b8179aDavid Schnurr2 years ago | 203 | from openai import AsyncOpenAI |
| 204 | | |
| 205 | client = AsyncOpenAI() | |
| 206 | | |
a3da0196Stainless Bot2 years ago | 207 | |
dfe1c8daSahand Sojoodi2 years ago | 208 | async def main(): |
| 209 | stream = await client.chat.completions.create( | |
| 210 | model="gpt-4", | |
| 211 | messages=[{"role": "user", "content": "Say this is a test"}], | |
| 212 | stream=True, | |
| 213 | ) | |
| 214 | async for chunk in stream: | |
a3da0196Stainless Bot2 years ago | 215 | print(chunk.choices[0].delta.content or "", end="") |
| 216 | | |
dfe1c8daSahand Sojoodi2 years ago | 217 | |
| 218 | asyncio.run(main()) | |
53e5ba4bt-asutedjo4 years ago | 219 | ``` |
2b21516eAtty Eleti3 years ago | 220 | |
08b8179aDavid Schnurr2 years ago | 221 | ## Module-level client |
d53d9efbRachel Lim5 years ago | 222 | |
08b8179aDavid Schnurr2 years ago | 223 | > [!IMPORTANT] |
| 224 | > We highly recommend instantiating client instances instead of relying on the global client. | |
d53d9efbRachel Lim5 years ago | 225 | |
08b8179aDavid Schnurr2 years ago | 226 | We also expose a global client instance that is accessible in a similar fashion to versions prior to v1. |
6572ef4fZheNing Hu3 years ago | 227 | |
08b8179aDavid Schnurr2 years ago | 228 | ```py |
| 229 | import openai | |
62b73b9bAtty Eleti3 years ago | 230 | |
08b8179aDavid Schnurr2 years ago | 231 | # optional; defaults to `os.environ['OPENAI_API_KEY']` |
| 232 | openai.api_key = '...' | |
| 233 | | |
| 234 | # all client options can be configured just like the `OpenAI` instantiation counterpart | |
| 235 | openai.base_url = "https://..." | |
| 236 | openai.default_headers = {"x-foo": "true"} | |
| 237 | | |
| 238 | completion = openai.chat.completions.create( | |
23444ed9Stainless Bot1 years ago | 239 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 240 | messages=[ |
| 241 | { | |
| 242 | "role": "user", | |
| 243 | "content": "How do I output all files in a directory using Python?", | |
| 244 | }, | |
| 245 | ], | |
| 246 | ) | |
62b73b9bAtty Eleti3 years ago | 247 | print(completion.choices[0].message.content) |
| 248 | ``` | |
| 249 | | |
137f38baNino Risteski2 years ago | 250 | The API is the exact same as the standard client instance-based API. |
376dd199Logan Kilpatrick2 years ago | 251 | |
08b8179aDavid Schnurr2 years ago | 252 | This is intended to be used within REPLs or notebooks for faster iteration, **not** in application code. |
2b21516eAtty Eleti3 years ago | 253 | |
08b8179aDavid Schnurr2 years ago | 254 | We recommend that you always instantiate a client (e.g., with `client = OpenAI()`) in application code because: |
2b21516eAtty Eleti3 years ago | 255 | |
08b8179aDavid Schnurr2 years ago | 256 | - It can be difficult to reason about where client options are configured |
| 257 | - It's not possible to change certain client options without potentially causing race conditions | |
| 258 | - It's harder to mock for testing purposes | |
| 259 | - It's not possible to control cleanup of network connections | |
| 260 | | |
488ec04bRobert Craigie1 years ago | 261 | ## Realtime API beta |
| 262 | | |
| 263 | The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a WebSocket connection. | |
| 264 | | |
| 265 | Under the hood the SDK uses the [`websockets`](https://websockets.readthedocs.io/en/stable/) library to manage connections. | |
| 266 | | |
255677d7Robert Craigie1 years ago | 267 | The Realtime API works through a combination of client-sent events and server-sent events. Clients can send events to do things like update session configuration or send text and audio inputs. Server events confirm when audio responses have completed, or when a text response from the model has been received. A full event reference can be found [here](https://platform.openai.com/docs/api-reference/realtime-client-events) and a guide can be found [here](https://platform.openai.com/docs/guides/realtime). |
488ec04bRobert Craigie1 years ago | 268 | |
| 269 | Basic text based example: | |
| 270 | | |
| 271 | ```py | |
| 272 | import asyncio | |
| 273 | from openai import AsyncOpenAI | |
| 274 | | |
| 275 | async def main(): | |
| 276 | client = AsyncOpenAI() | |
| 277 | | |
fd763424Robert Craigie1 years ago | 278 | async with client.beta.realtime.connect(model="gpt-4o-realtime-preview") as connection: |
488ec04bRobert Craigie1 years ago | 279 | await connection.session.update(session={'modalities': ['text']}) |
| 280 | | |
| 281 | await connection.conversation.item.create( | |
| 282 | item={ | |
| 283 | "type": "message", | |
| 284 | "role": "user", | |
| 285 | "content": [{"type": "input_text", "text": "Say hello!"}], | |
| 286 | } | |
| 287 | ) | |
| 288 | await connection.response.create() | |
| 289 | | |
| 290 | async for event in connection: | |
| 291 | if event.type == 'response.text.delta': | |
| 292 | print(event.delta, flush=True, end="") | |
| 293 | | |
| 294 | elif event.type == 'response.text.done': | |
| 295 | print() | |
| 296 | | |
| 297 | elif event.type == "response.done": | |
| 298 | break | |
| 299 | | |
| 300 | asyncio.run(main()) | |
| 301 | ``` | |
| 302 | | |
6935dfdcRobert Craigie1 years ago | 303 | However the real magic of the Realtime API is handling audio inputs / outputs, see this example [TUI script](https://github.com/openai/openai-python/blob/main/examples/realtime/push_to_talk_app.py) for a fully fledged example. |
488ec04bRobert Craigie1 years ago | 304 | |
| 305 | ### Realtime error handling | |
| 306 | | |
90e3d396Guspan Tanadi1 years ago | 307 | Whenever an error occurs, the Realtime API will send an [`error` event](https://platform.openai.com/docs/guides/realtime-model-capabilities#error-handling) and the connection will stay open and remain usable. This means you need to handle it yourself, as *no errors are raised directly* by the SDK when an `error` event comes in. |
488ec04bRobert Craigie1 years ago | 308 | |
| 309 | ```py | |
| 310 | client = AsyncOpenAI() | |
| 311 | | |
fd763424Robert Craigie1 years ago | 312 | async with client.beta.realtime.connect(model="gpt-4o-realtime-preview") as connection: |
488ec04bRobert Craigie1 years ago | 313 | ... |
| 314 | async for event in connection: | |
| 315 | if event.type == 'error': | |
| 316 | print(event.error.type) | |
| 317 | print(event.error.code) | |
| 318 | print(event.error.event_id) | |
| 319 | print(event.error.message) | |
| 320 | ``` | |
| 321 | | |
08b8179aDavid Schnurr2 years ago | 322 | ## Using types |
| 323 | | |
47656567Stainless Bot2 years ago | 324 | Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like: |
f4b9655fStainless Bot2 years ago | 325 | |
47656567Stainless Bot2 years ago | 326 | - Serializing back into JSON, `model.to_json()` |
| 327 | - Converting to a dictionary, `model.to_dict()` | |
2b21516eAtty Eleti3 years ago | 328 | |
08b8179aDavid Schnurr2 years ago | 329 | Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`. |
0e21703eTed Sanders4 years ago | 330 | |
08b8179aDavid Schnurr2 years ago | 331 | ## Pagination |
0e21703eTed Sanders4 years ago | 332 | |
08b8179aDavid Schnurr2 years ago | 333 | List methods in the OpenAI API are paginated. |
| 334 | | |
| 335 | This library provides auto-paginating iterators with each list response, so you do not have to request successive pages manually: | |
0e21703eTed Sanders4 years ago | 336 | |
| 337 | ```python | |
ff5add01stainless-app[bot]1 years ago | 338 | from openai import OpenAI |
0e21703eTed Sanders4 years ago | 339 | |
08b8179aDavid Schnurr2 years ago | 340 | client = OpenAI() |
0e21703eTed Sanders4 years ago | 341 | |
08b8179aDavid Schnurr2 years ago | 342 | all_jobs = [] |
| 343 | # Automatically fetches more pages as needed. | |
| 344 | for job in client.fine_tuning.jobs.list( | |
| 345 | limit=20, | |
| 346 | ): | |
| 347 | # Do something with job here | |
| 348 | all_jobs.append(job) | |
| 349 | print(all_jobs) | |
0e21703eTed Sanders4 years ago | 350 | ``` |
| 351 | | |
08b8179aDavid Schnurr2 years ago | 352 | Or, asynchronously: |
0e21703eTed Sanders4 years ago | 353 | |
08b8179aDavid Schnurr2 years ago | 354 | ```python |
| 355 | import asyncio | |
ff5add01stainless-app[bot]1 years ago | 356 | from openai import AsyncOpenAI |
0e21703eTed Sanders4 years ago | 357 | |
08b8179aDavid Schnurr2 years ago | 358 | client = AsyncOpenAI() |
0e21703eTed Sanders4 years ago | 359 | |
| 360 | | |
08b8179aDavid Schnurr2 years ago | 361 | async def main() -> None: |
| 362 | all_jobs = [] | |
| 363 | # Iterate through items across all pages, issuing requests as needed. | |
| 364 | async for job in client.fine_tuning.jobs.list( | |
| 365 | limit=20, | |
| 366 | ): | |
| 367 | all_jobs.append(job) | |
| 368 | print(all_jobs) | |
0e21703eTed Sanders4 years ago | 369 | |
62b51ca0Boris Dayma4 years ago | 370 | |
08b8179aDavid Schnurr2 years ago | 371 | asyncio.run(main()) |
| 372 | ``` | |
2942bf4bLogan Kilpatrick2 years ago | 373 | |
08b8179aDavid Schnurr2 years ago | 374 | Alternatively, you can use the `.has_next_page()`, `.next_page_info()`, or `.get_next_page()` methods for more granular control working with pages: |
2942bf4bLogan Kilpatrick2 years ago | 375 | |
08b8179aDavid Schnurr2 years ago | 376 | ```python |
| 377 | first_page = await client.fine_tuning.jobs.list( | |
| 378 | limit=20, | |
| 379 | ) | |
| 380 | if first_page.has_next_page(): | |
| 381 | print(f"will fetch next page using these details: {first_page.next_page_info()}") | |
| 382 | next_page = await first_page.get_next_page() | |
| 383 | print(f"number of items we just fetched: {len(next_page.data)}") | |
| 384 | | |
| 385 | # Remove `await` for non-async usage. | |
62b51ca0Boris Dayma4 years ago | 386 | ``` |
| 387 | | |
08b8179aDavid Schnurr2 years ago | 388 | Or just work directly with the returned data: |
0e21703eTed Sanders4 years ago | 389 | |
08b8179aDavid Schnurr2 years ago | 390 | ```python |
| 391 | first_page = await client.fine_tuning.jobs.list( | |
| 392 | limit=20, | |
| 393 | ) | |
e389823bMorgan McGuire2 years ago | 394 | |
08b8179aDavid Schnurr2 years ago | 395 | print(f"next page cursor: {first_page.after}") # => "next page cursor: ..." |
| 396 | for job in first_page.data: | |
| 397 | print(job.id) | |
e389823bMorgan McGuire2 years ago | 398 | |
08b8179aDavid Schnurr2 years ago | 399 | # Remove `await` for non-async usage. |
| 400 | ``` | |
e389823bMorgan McGuire2 years ago | 401 | |
08b8179aDavid Schnurr2 years ago | 402 | ## Nested params |
3c00e856hallacy3 years ago | 403 | |
08b8179aDavid Schnurr2 years ago | 404 | Nested parameters are dictionaries, typed using `TypedDict`, for example: |
3c00e856hallacy3 years ago | 405 | |
| 406 | ```python | |
08b8179aDavid Schnurr2 years ago | 407 | from openai import OpenAI |
3c00e856hallacy3 years ago | 408 | |
08b8179aDavid Schnurr2 years ago | 409 | client = OpenAI() |
| 410 | | |
aa681899Stainless Bot2 years ago | 411 | completion = client.chat.completions.create( |
| 412 | messages=[ | |
| 413 | { | |
| 414 | "role": "user", | |
| 415 | "content": "Can you generate an example json object describing a fruit?", | |
| 416 | } | |
| 417 | ], | |
23444ed9Stainless Bot1 years ago | 418 | model="gpt-4o", |
aa681899Stainless Bot2 years ago | 419 | response_format={"type": "json_object"}, |
| 420 | ) | |
08b8179aDavid Schnurr2 years ago | 421 | ``` |
3c00e856hallacy3 years ago | 422 | |
2b23eb53Stainless Bot2 years ago | 423 | ## File uploads |
dc33cb9dMichelle Pokrass3 years ago | 424 | |
08b8179aDavid Schnurr2 years ago | 425 | Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`. |
dc33cb9dMichelle Pokrass3 years ago | 426 | |
376dd199Logan Kilpatrick2 years ago | 427 | ```python |
08b8179aDavid Schnurr2 years ago | 428 | from pathlib import Path |
| 429 | from openai import OpenAI | |
| 430 | | |
| 431 | client = OpenAI() | |
| 432 | | |
| 433 | client.files.create( | |
| 434 | file=Path("input.jsonl"), | |
| 435 | purpose="fine-tune", | |
| 436 | ) | |
dc33cb9dMichelle Pokrass3 years ago | 437 | ``` |
| 438 | | |
08b8179aDavid Schnurr2 years ago | 439 | The async client uses the exact same interface. If you pass a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance, the file contents will be read asynchronously automatically. |
376dd199Logan Kilpatrick2 years ago | 440 | |
08b8179aDavid Schnurr2 years ago | 441 | ## Handling errors |
376dd199Logan Kilpatrick2 years ago | 442 | |
08b8179aDavid Schnurr2 years ago | 443 | When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `openai.APIConnectionError` is raised. |
2b21516eAtty Eleti3 years ago | 444 | |
08b8179aDavid Schnurr2 years ago | 445 | When the API returns a non-success status code (that is, 4xx or 5xx |
| 446 | response), a subclass of `openai.APIStatusError` is raised, containing `status_code` and `response` properties. | |
62b73b9bAtty Eleti3 years ago | 447 | |
08b8179aDavid Schnurr2 years ago | 448 | All errors inherit from `openai.APIError`. |
| 449 | | |
| 450 | ```python | |
| 451 | import openai | |
| 452 | from openai import OpenAI | |
| 453 | | |
| 454 | client = OpenAI() | |
| 455 | | |
| 456 | try: | |
8dab1421Stainless Bot2 years ago | 457 | client.fine_tuning.jobs.create( |
23444ed9Stainless Bot1 years ago | 458 | model="gpt-4o", |
8dab1421Stainless Bot2 years ago | 459 | training_file="file-abc123", |
08b8179aDavid Schnurr2 years ago | 460 | ) |
| 461 | except openai.APIConnectionError as e: | |
| 462 | print("The server could not be reached") | |
| 463 | print(e.__cause__) # an underlying Exception, likely raised within httpx. | |
| 464 | except openai.RateLimitError as e: | |
| 465 | print("A 429 status code was received; we should back off a bit.") | |
| 466 | except openai.APIStatusError as e: | |
| 467 | print("Another non-200-range status code was received") | |
| 468 | print(e.status_code) | |
| 469 | print(e.response) | |
62b73b9bAtty Eleti3 years ago | 470 | ``` |
| 471 | | |
fee9c81bstainless-app[bot]1 years ago | 472 | Error codes are as follows: |
08b8179aDavid Schnurr2 years ago | 473 | |
| 474 | | Status Code | Error Type | | |
| 475 | | ----------- | -------------------------- | | |
| 476 | | 400 | `BadRequestError` | | |
| 477 | | 401 | `AuthenticationError` | | |
| 478 | | 403 | `PermissionDeniedError` | | |
| 479 | | 404 | `NotFoundError` | | |
| 480 | | 422 | `UnprocessableEntityError` | | |
| 481 | | 429 | `RateLimitError` | | |
| 482 | | >=500 | `InternalServerError` | | |
| 483 | | N/A | `APIConnectionError` | | |
| 484 | | |
4b302346Robert Craigie1 years ago | 485 | ## Request IDs |
| 486 | | |
| 487 | > For more information on debugging requests, see [these docs](https://platform.openai.com/docs/api-reference/debugging-requests) | |
| 488 | | |
| 489 | All object responses in the SDK provide a `_request_id` property which is added from the `x-request-id` response header so that you can quickly log failing requests and report them back to OpenAI. | |
| 490 | | |
| 491 | ```python | |
| 492 | completion = await client.chat.completions.create( | |
| 493 | messages=[{"role": "user", "content": "Say this is a test"}], model="gpt-4" | |
| 494 | ) | |
| 495 | print(completion._request_id) # req_123 | |
| 496 | ``` | |
| 497 | | |
| 498 | Note that unlike other properties that use an `_` prefix, the `_request_id` property | |
| 499 | *is* public. Unless documented otherwise, *all* other `_` prefix properties, | |
| 500 | methods and modules are *private*. | |
| 501 | | |
709926ffRobert Craigie1 years ago | 502 | > [!IMPORTANT] |
| 503 | > If you need to access request IDs for failed requests you must catch the `APIStatusError` exception | |
| 504 | | |
| 505 | ```python | |
| 506 | import openai | |
| 507 | | |
| 508 | try: | |
| 509 | completion = await client.chat.completions.create( | |
| 510 | messages=[{"role": "user", "content": "Say this is a test"}], model="gpt-4" | |
| 511 | ) | |
| 512 | except openai.APIStatusError as exc: | |
| 513 | print(exc.request_id) # req_123 | |
| 514 | raise exc | |
| 515 | ``` | |
| 516 | | |
4b302346Robert Craigie1 years ago | 517 | |
08b8179aDavid Schnurr2 years ago | 518 | ### Retries |
376dd199Logan Kilpatrick2 years ago | 519 | |
08b8179aDavid Schnurr2 years ago | 520 | Certain errors are automatically retried 2 times by default, with a short exponential backoff. |
| 521 | Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict, | |
| 522 | 429 Rate Limit, and >=500 Internal errors are all retried by default. | |
0abf6413Andrew Chen Wang3 years ago | 523 | |
08b8179aDavid Schnurr2 years ago | 524 | You can use the `max_retries` option to configure or disable retry settings: |
0abf6413Andrew Chen Wang3 years ago | 525 | |
| 526 | ```python | |
08b8179aDavid Schnurr2 years ago | 527 | from openai import OpenAI |
| 528 | | |
| 529 | # Configure the default for all requests: | |
| 530 | client = OpenAI( | |
| 531 | # default is 2 | |
| 532 | max_retries=0, | |
| 533 | ) | |
| 534 | | |
| 535 | # Or, configure per-request: | |
| 536 | client.with_options(max_retries=5).chat.completions.create( | |
| 537 | messages=[ | |
| 538 | { | |
| 539 | "role": "user", | |
23444ed9Stainless Bot1 years ago | 540 | "content": "How can I get the name of the current day in JavaScript?", |
08b8179aDavid Schnurr2 years ago | 541 | } |
| 542 | ], | |
23444ed9Stainless Bot1 years ago | 543 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 544 | ) |
0abf6413Andrew Chen Wang3 years ago | 545 | ``` |
| 546 | | |
08b8179aDavid Schnurr2 years ago | 547 | ### Timeouts |
0abf6413Andrew Chen Wang3 years ago | 548 | |
08b8179aDavid Schnurr2 years ago | 549 | By default requests time out after 10 minutes. You can configure this with a `timeout` option, |
90e3d396Guspan Tanadi1 years ago | 550 | which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object: |
376dd199Logan Kilpatrick2 years ago | 551 | |
08b8179aDavid Schnurr2 years ago | 552 | ```python |
| 553 | from openai import OpenAI | |
| 554 | | |
| 555 | # Configure the default for all requests: | |
| 556 | client = OpenAI( | |
1381f46eStainless Bot2 years ago | 557 | # 20 seconds (default is 10 minutes) |
08b8179aDavid Schnurr2 years ago | 558 | timeout=20.0, |
| 559 | ) | |
| 560 | | |
| 561 | # More granular control: | |
| 562 | client = OpenAI( | |
| 563 | timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0), | |
| 564 | ) | |
| 565 | | |
| 566 | # Override per-request: | |
2a678e30Stainless Bot2 years ago | 567 | client.with_options(timeout=5.0).chat.completions.create( |
08b8179aDavid Schnurr2 years ago | 568 | messages=[ |
| 569 | { | |
| 570 | "role": "user", | |
| 571 | "content": "How can I list all files in a directory using Python?", | |
| 572 | } | |
| 573 | ], | |
23444ed9Stainless Bot1 years ago | 574 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 575 | ) |
0abf6413Andrew Chen Wang3 years ago | 576 | ``` |
| 577 | | |
08b8179aDavid Schnurr2 years ago | 578 | On timeout, an `APITimeoutError` is thrown. |
376dd199Logan Kilpatrick2 years ago | 579 | |
08b8179aDavid Schnurr2 years ago | 580 | Note that requests that time out are [retried twice by default](#retries). |
376dd199Logan Kilpatrick2 years ago | 581 | |
08b8179aDavid Schnurr2 years ago | 582 | ## Advanced |
376dd199Logan Kilpatrick2 years ago | 583 | |
08b8179aDavid Schnurr2 years ago | 584 | ### Logging |
376dd199Logan Kilpatrick2 years ago | 585 | |
08b8179aDavid Schnurr2 years ago | 586 | We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module. |
376dd199Logan Kilpatrick2 years ago | 587 | |
f6199d60stainless-app[bot]1 years ago | 588 | You can enable logging by setting the environment variable `OPENAI_LOG` to `info`. |
376dd199Logan Kilpatrick2 years ago | 589 | |
08b8179aDavid Schnurr2 years ago | 590 | ```shell |
f6199d60stainless-app[bot]1 years ago | 591 | $ export OPENAI_LOG=info |
376dd199Logan Kilpatrick2 years ago | 592 | ``` |
| 593 | | |
f6199d60stainless-app[bot]1 years ago | 594 | Or to `debug` for more verbose logging. |
| 595 | | |
08b8179aDavid Schnurr2 years ago | 596 | ### How to tell whether `None` means `null` or missing |
dc33cb9dMichelle Pokrass3 years ago | 597 | |
08b8179aDavid Schnurr2 years ago | 598 | In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`: |
3c6d4cd6Greg Brockman5 years ago | 599 | |
08b8179aDavid Schnurr2 years ago | 600 | ```py |
| 601 | if response.my_field is None: | |
| 602 | if 'my_field' not in response.model_fields_set: | |
| 603 | print('Got json like {}, without a "my_field" key present at all.') | |
| 604 | else: | |
| 605 | print('Got json like {"my_field": null}.') | |
| 606 | ``` | |
376dd199Logan Kilpatrick2 years ago | 607 | |
08b8179aDavid Schnurr2 years ago | 608 | ### Accessing raw response data (e.g. headers) |
376dd199Logan Kilpatrick2 years ago | 609 | |
86379b44Stainless Bot2 years ago | 610 | The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g., |
08b8179aDavid Schnurr2 years ago | 611 | |
| 612 | ```py | |
| 613 | from openai import OpenAI | |
| 614 | | |
| 615 | client = OpenAI() | |
| 616 | response = client.chat.completions.with_raw_response.create( | |
| 617 | messages=[{ | |
| 618 | "role": "user", | |
| 619 | "content": "Say this is a test", | |
| 620 | }], | |
23444ed9Stainless Bot1 years ago | 621 | model="gpt-4o", |
08b8179aDavid Schnurr2 years ago | 622 | ) |
| 623 | print(response.headers.get('X-My-Header')) | |
| 624 | | |
| 625 | completion = response.parse() # get the object that `chat.completions.create()` would have returned | |
| 626 | print(completion) | |
376dd199Logan Kilpatrick2 years ago | 627 | ``` |
| 628 | | |
16315f22stainless-app[bot]1 years ago | 629 | These methods return a [`LegacyAPIResponse`](https://github.com/openai/openai-python/tree/main/src/openai/_legacy_response.py) object. This is a legacy class as we're changing it slightly in the next major version. |
86379b44Stainless Bot2 years ago | 630 | |
| 631 | For the sync client this will mostly be the same with the exception | |
| 632 | of `content` & `text` will be methods instead of properties. In the | |
| 633 | async client, all methods will be async. | |
| 634 | | |
| 635 | A migration script will be provided & the migration in general should | |
| 636 | be smooth. | |
| 637 | | |
| 638 | #### `.with_streaming_response` | |
| 639 | | |
| 640 | The above interface eagerly reads the full response body when you make the request, which may not always be what you want. | |
| 641 | | |
| 642 | To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods. | |
| 643 | | |
| 644 | As such, `.with_streaming_response` methods return a different [`APIResponse`](https://github.com/openai/openai-python/tree/main/src/openai/_response.py) object, and the async client returns an [`AsyncAPIResponse`](https://github.com/openai/openai-python/tree/main/src/openai/_response.py) object. | |
| 645 | | |
| 646 | ```python | |
| 647 | with client.chat.completions.with_streaming_response.create( | |
| 648 | messages=[ | |
| 649 | { | |
| 650 | "role": "user", | |
| 651 | "content": "Say this is a test", | |
| 652 | } | |
| 653 | ], | |
23444ed9Stainless Bot1 years ago | 654 | model="gpt-4o", |
86379b44Stainless Bot2 years ago | 655 | ) as response: |
| 656 | print(response.headers.get("X-My-Header")) | |
| 657 | | |
| 658 | for line in response.iter_lines(): | |
| 659 | print(line) | |
| 660 | ``` | |
| 661 | | |
| 662 | The context manager is required so that the response will reliably be closed. | |
3c6d4cd6Greg Brockman5 years ago | 663 | |
73869eeeStainless Bot2 years ago | 664 | ### Making custom/undocumented requests |
| 665 | | |
7931ebaaStainless Bot2 years ago | 666 | This library is typed for convenient access to the documented API. |
73869eeeStainless Bot2 years ago | 667 | |
| 668 | If you need to access undocumented endpoints, params, or response properties, the library can still be used. | |
| 669 | | |
| 670 | #### Undocumented endpoints | |
| 671 | | |
| 672 | To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other | |
fee9c81bstainless-app[bot]1 years ago | 673 | http verbs. Options on the client will be respected (such as retries) when making this request. |
73869eeeStainless Bot2 years ago | 674 | |
| 675 | ```py | |
| 676 | import httpx | |
| 677 | | |
| 678 | response = client.post( | |
| 679 | "/foo", | |
| 680 | cast_to=httpx.Response, | |
| 681 | body={"my_param": True}, | |
| 682 | ) | |
| 683 | | |
| 684 | print(response.headers.get("x-foo")) | |
| 685 | ``` | |
| 686 | | |
802819c8Stainless Bot2 years ago | 687 | #### Undocumented request params |
73869eeeStainless Bot2 years ago | 688 | |
| 689 | If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request | |
| 690 | options. | |
| 691 | | |
802819c8Stainless Bot2 years ago | 692 | #### Undocumented response properties |
73869eeeStainless Bot2 years ago | 693 | |
| 694 | To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You | |
| 695 | can also get all the extra fields on the Pydantic model as a dict with | |
| 696 | [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra). | |
| 697 | | |
08b8179aDavid Schnurr2 years ago | 698 | ### Configuring the HTTP client |
376dd199Logan Kilpatrick2 years ago | 699 | |
08b8179aDavid Schnurr2 years ago | 700 | You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including: |
376dd199Logan Kilpatrick2 years ago | 701 | |
6a1ab551stainless-app[bot]1 years ago | 702 | - Support for [proxies](https://www.python-httpx.org/advanced/proxies/) |
| 703 | - Custom [transports](https://www.python-httpx.org/advanced/transports/) | |
d3254d12stainless-app[bot]2 years ago | 704 | - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality |
376dd199Logan Kilpatrick2 years ago | 705 | |
| 706 | ```python | |
6a1ab551stainless-app[bot]1 years ago | 707 | import httpx |
347363edStainless Bot2 years ago | 708 | from openai import OpenAI, DefaultHttpxClient |
08b8179aDavid Schnurr2 years ago | 709 | |
| 710 | client = OpenAI( | |
0733934fStainless Bot2 years ago | 711 | # Or use the `OPENAI_BASE_URL` env var |
38dd5348Adrian Cole1 years ago | 712 | base_url="http://my.test.server.example.com:8083/v1", |
347363edStainless Bot2 years ago | 713 | http_client=DefaultHttpxClient( |
6a1ab551stainless-app[bot]1 years ago | 714 | proxy="http://my.test.proxy.example.com", |
08b8179aDavid Schnurr2 years ago | 715 | transport=httpx.HTTPTransport(local_address="0.0.0.0"), |
| 716 | ), | |
| 717 | ) | |
| 718 | ``` | |
| 719 | | |
f8f01a61stainless-app[bot]1 years ago | 720 | You can also customize the client on a per-request basis by using `with_options()`: |
| 721 | | |
| 722 | ```python | |
| 723 | client.with_options(http_client=DefaultHttpxClient(...)) | |
| 724 | ``` | |
| 725 | | |
08b8179aDavid Schnurr2 years ago | 726 | ### Managing HTTP resources |
| 727 | | |
| 728 | By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting. | |
| 729 | | |
588935e2stainless-app[bot]1 years ago | 730 | ```py |
| 731 | from openai import OpenAI | |
| 732 | | |
| 733 | with OpenAI() as client: | |
| 734 | # make requests here | |
| 735 | ... | |
| 736 | | |
| 737 | # HTTP client is now closed | |
| 738 | ``` | |
| 739 | | |
08b8179aDavid Schnurr2 years ago | 740 | ## Microsoft Azure OpenAI |
| 741 | | |
6e7d8548Scott Addie2 years ago | 742 | To use this library with [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/overview), use the `AzureOpenAI` |
08b8179aDavid Schnurr2 years ago | 743 | class instead of the `OpenAI` class. |
| 744 | | |
| 745 | > [!IMPORTANT] | |
| 746 | > The Azure API shape differs from the core API shape which means that the static types for responses / params | |
| 747 | > won't always be correct. | |
376dd199Logan Kilpatrick2 years ago | 748 | |
08b8179aDavid Schnurr2 years ago | 749 | ```py |
| 750 | from openai import AzureOpenAI | |
376dd199Logan Kilpatrick2 years ago | 751 | |
08b8179aDavid Schnurr2 years ago | 752 | # gets the API Key from environment variable AZURE_OPENAI_API_KEY |
| 753 | client = AzureOpenAI( | |
6e7d8548Scott Addie2 years ago | 754 | # https://learn.microsoft.com/azure/ai-services/openai/reference#rest-api-versioning |
819ae68dJackYu2 years ago | 755 | api_version="2023-07-01-preview", |
6e7d8548Scott Addie2 years ago | 756 | # https://learn.microsoft.com/azure/cognitive-services/openai/how-to/create-resource?pivots=web-portal#create-a-resource |
08b8179aDavid Schnurr2 years ago | 757 | azure_endpoint="https://example-endpoint.openai.azure.com", |
| 758 | ) | |
| 759 | | |
| 760 | completion = client.chat.completions.create( | |
| 761 | model="deployment-name", # e.g. gpt-35-instant | |
| 762 | messages=[ | |
| 763 | { | |
| 764 | "role": "user", | |
| 765 | "content": "How do I output all files in a directory using Python?", | |
| 766 | }, | |
| 767 | ], | |
| 768 | ) | |
47656567Stainless Bot2 years ago | 769 | print(completion.to_json()) |
376dd199Logan Kilpatrick2 years ago | 770 | ``` |
3c6d4cd6Greg Brockman5 years ago | 771 | |
08b8179aDavid Schnurr2 years ago | 772 | In addition to the options provided in the base `OpenAI` client, the following options are provided: |
| 773 | | |
7758c54bStainless Bot2 years ago | 774 | - `azure_endpoint` (or the `AZURE_OPENAI_ENDPOINT` environment variable) |
08b8179aDavid Schnurr2 years ago | 775 | - `azure_deployment` |
7758c54bStainless Bot2 years ago | 776 | - `api_version` (or the `OPENAI_API_VERSION` environment variable) |
| 777 | - `azure_ad_token` (or the `AZURE_OPENAI_AD_TOKEN` environment variable) | |
08b8179aDavid Schnurr2 years ago | 778 | - `azure_ad_token_provider` |
| 779 | | |
6e7d8548Scott Addie2 years ago | 780 | An example of using the client with Microsoft Entra ID (formerly known as Azure Active Directory) can be found [here](https://github.com/openai/openai-python/blob/main/examples/azure_ad.py). |
08b8179aDavid Schnurr2 years ago | 781 | |
| 782 | ## Versioning | |
| 783 | | |
| 784 | This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: | |
| 785 | | |
| 786 | 1. Changes that only affect static types, without breaking runtime behavior. | |
e502d301Josiah Altschuler1 years ago | 787 | 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_ |
08b8179aDavid Schnurr2 years ago | 788 | 3. Changes that we do not expect to impact the vast majority of users in practice. |
| 789 | | |
| 790 | We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. | |
| 791 | | |
| 792 | We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-python/issues) with questions, bugs, or suggestions. | |
| 793 | | |
fee10404stainless-app[bot]1 years ago | 794 | ### Determining the installed version |
| 795 | | |
| 796 | If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version. | |
| 797 | | |
| 798 | You can determine the version that is being used at runtime with: | |
| 799 | | |
| 800 | ```py | |
| 801 | import openai | |
| 802 | print(openai.__version__) | |
| 803 | ``` | |
| 804 | | |
08b8179aDavid Schnurr2 years ago | 805 | ## Requirements |
3c6d4cd6Greg Brockman5 years ago | 806 | |
cb88c2f0stainless-app[bot]1 years ago | 807 | Python 3.8 or higher. |
a3001d8dStainless Bot1 years ago | 808 | |
| 809 | ## Contributing | |
| 810 | | |
| 811 | See [the contributing documentation](./CONTRIBUTING.md). |