Skip to content

Commit 5b56ef7

Browse files
authored
FEAT: support async client (xorbitsai#100)
1 parent 98a050c commit 5b56ef7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ include_package_data = True
2525
packages = find:
2626
install_requires =
2727
requests
28+
aiohttp
2829
typing-extensions
2930
pydantic
3031

xinference_client/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414

1515
from . import _version
16+
from .client.restful.async_restful_client import AsyncClient as AsyncRESTfulClient
1617
from .client.restful.restful_client import Client as RESTfulClient
1718

1819
__version__ = _version.get_versions()["version"]

0 commit comments

Comments
 (0)