fix: import statements for ZaiClient in batches and files (#26)
Co-authored-by: zhengweijun <weijun.zheng@aminer.cn>
This commit is contained in:
parent
82e09d6ee9
commit
2645c01967
4 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
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"
|
||||
authors = ["Z.ai"]
|
||||
readme = "README.md"
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
__title__ = 'Z.ai'
|
||||
__version__ = '0.0.3.1'
|
||||
__version__ = '0.0.3.2'
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ from zai.core.pagination import SyncCursorPage
|
|||
from zai.types.batch import Batch, BatchCreateParams, BatchListParams
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from .._client import ZaiClient
|
||||
from zai._client import ZaiClient
|
||||
|
||||
|
||||
class Batches(BaseAPI):
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ from zai.types.files import (
|
|||
)
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from .._client import ZaiClient
|
||||
from zai._client import ZaiClient
|
||||
|
||||
|
||||
class Files(BaseAPI):
|
||||
|
|
|
|||
Loading…
Reference in a new issue