fix: import statements for ZaiClient in batches and files (#26)

Co-authored-by: zhengweijun <weijun.zheng@aminer.cn>
This commit is contained in:
wellenzheng 2025-08-14 18:37:54 +08:00 committed by GitHub
parent 82e09d6ee9
commit 2645c01967
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "zai-sdk" name = "zai-sdk"
version = "0.0.3.1" version = "0.0.3.2"
description = "A SDK library for accessing big model apis from Z.ai" description = "A SDK library for accessing big model apis from Z.ai"
authors = ["Z.ai"] authors = ["Z.ai"]
readme = "README.md" readme = "README.md"

View file

@ -1,2 +1,2 @@
__title__ = 'Z.ai' __title__ = 'Z.ai'
__version__ = '0.0.3.1' __version__ = '0.0.3.2'

View file

@ -17,7 +17,7 @@ from zai.core.pagination import SyncCursorPage
from zai.types.batch import Batch, BatchCreateParams, BatchListParams from zai.types.batch import Batch, BatchCreateParams, BatchListParams
if TYPE_CHECKING: if TYPE_CHECKING:
from .._client import ZaiClient from zai._client import ZaiClient
class Batches(BaseAPI): class Batches(BaseAPI):

View file

@ -28,7 +28,7 @@ from zai.types.files import (
) )
if TYPE_CHECKING: if TYPE_CHECKING:
from .._client import ZaiClient from zai._client import ZaiClient
class Files(BaseAPI): class Files(BaseAPI):