Skip to content

Commit

Permalink
bugfix: python client search reqpayload
Browse files Browse the repository at this point in the history
  • Loading branch information
skeptrunedev authored and fedhacks committed Nov 26, 2024
1 parent 0c635a2 commit ebcd0e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "trieve_py_client"
version = "0.12.5"
version = "0.12.6"
description = "Trieve API"
authors = ["Trieve Team <[email protected]>"]
license = "BSL"
Expand Down
2 changes: 1 addition & 1 deletion clients/python-sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "trieve_py_client"
VERSION = "0.12.5"
VERSION = "0.12.6"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion clients/python-sdk/trieve_py_client/api/chunk_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ def search_chunks(
),
],
search_chunks_req_payload: Annotated[
ChunkReqPayload | List[ChunkReqPayload],
SearchChunksReqPayload,
Field(
description="JSON request payload to semantically search for chunks (chunks)"
),
Expand Down

0 comments on commit ebcd0e8

Please sign in to comment.