Skip to content

Commit

Permalink
chore: export NOT_GIVEN sentinel value (#1223)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Mar 8, 2024
1 parent 8598f81 commit 8a4f76f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/openai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing_extensions import override

from . import types
from ._types import NoneType, Transport, ProxiesTypes
from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes
from ._utils import file_from_path
from ._client import Client, OpenAI, Stream, Timeout, Transport, AsyncClient, AsyncOpenAI, AsyncStream, RequestOptions
from ._models import BaseModel
Expand Down Expand Up @@ -37,6 +37,8 @@
"NoneType",
"Transport",
"ProxiesTypes",
"NotGiven",
"NOT_GIVEN",
"OpenAIError",
"APIError",
"APIStatusError",
Expand Down

0 comments on commit 8a4f76f

Please sign in to comment.