Skip to content

Commit 8a49221

Browse files
stainless-botmegamanics
authored andcommitted
chore: export NOT_GIVEN sentinel value (openai#1223)
1 parent ca8beee commit 8a49221

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/openai/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing_extensions import override
77

88
from . import types
9-
from ._types import NoneType, Transport, ProxiesTypes
9+
from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes
1010
from ._utils import file_from_path
1111
from ._client import Client, OpenAI, Stream, Timeout, Transport, AsyncClient, AsyncOpenAI, AsyncStream, RequestOptions
1212
from ._models import BaseModel
@@ -37,6 +37,8 @@
3737
"NoneType",
3838
"Transport",
3939
"ProxiesTypes",
40+
"NotGiven",
41+
"NOT_GIVEN",
4042
"OpenAIError",
4143
"APIError",
4244
"APIStatusError",

0 commit comments

Comments
 (0)