Skip to content

Commit 6efbe2e

Browse files
Version bump to 0.11.0 along with stainless updates (#69)
1 parent c1f0843 commit 6efbe2e

28 files changed

+417
-422
lines changed

aimon/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3+
import typing as _t
4+
35
from . import types
46
from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
57
from ._utils import file_from_path
@@ -24,7 +26,7 @@
2426
UnprocessableEntityError,
2527
APIResponseValidationError,
2628
)
27-
from ._base_client import DefaultHttpxClient, DefaultAsyncHttpxClient
29+
from ._base_client import DefaultHttpxClient, DefaultAioHttpClient, DefaultAsyncHttpxClient
2830
from ._utils._logs import setup_logging as _setup_logging
2931

3032
__all__ = [
@@ -64,8 +66,12 @@
6466
"DEFAULT_CONNECTION_LIMITS",
6567
"DefaultHttpxClient",
6668
"DefaultAsyncHttpxClient",
69+
"DefaultAioHttpClient",
6770
]
6871

72+
if not _t.TYPE_CHECKING:
73+
from ._utils._resources_proxy import resources as resources
74+
6975
_setup_logging()
7076

7177
# Update the __module__ attribute for exported symbols so that

0 commit comments

Comments
 (0)