Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/zai/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = 'Z.ai'
__version__ = '0.0.3.1'
__version__ = '0.0.3.2'
2 changes: 1 addition & 1 deletion src/zai/api_resource/batch/batches.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from zai.types.batch import Batch, BatchCreateParams, BatchListParams

if TYPE_CHECKING:
from .._client import ZaiClient
from zai._client import ZaiClient


class Batches(BaseAPI):
Expand Down
2 changes: 1 addition & 1 deletion src/zai/api_resource/files/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
)

if TYPE_CHECKING:
from .._client import ZaiClient
from zai._client import ZaiClient


class Files(BaseAPI):
Expand Down