Skip to content

Commit 55e9afa

Browse files
authored
Merge pull request #272 from mixedbread-ai/release-please--branches--main--changes--next
release: 0.53.0
2 parents 173a339 + b3d64db commit 55e9afa

7 files changed

Lines changed: 19 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.52.0"
2+
".": "0.53.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 56
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-284113064cbdc0dc556ccec620ed46da0c0f6163b9ff32ad0b3e9839a8a867df.yml
3-
openapi_spec_hash: af5a070b206b9486beb5f2edd7b6a1c4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-a5ced984ffa6baffe454ae18348039c0c7e0ac2c1a3b59875e8b3352d4af2ac5.yml
3+
openapi_spec_hash: c22196b7ee066ff04308ca2debc619ff
44
config_hash: ea30439e415ad92fd65dd21586143acc

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.53.0 (2026-05-21)
4+
5+
Full Changelog: [v0.52.0...v0.53.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.52.0...v0.53.0)
6+
7+
### Features
8+
9+
* **api:** api update ([0cc719f](https://github.com/mixedbread-ai/mixedbread-python/commit/0cc719f25fcb12f2990cb027069d04f336987870))
10+
311
## 0.52.0 (2026-05-20)
412

513
Full Changelog: [v0.51.0...v0.52.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.51.0...v0.52.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mixedbread"
3-
version = "0.52.0"
3+
version = "0.53.0"
44
description = "The official Python library for the Mixedbread API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/mixedbread/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "mixedbread"
4-
__version__ = "0.52.0" # x-release-please-version
4+
__version__ = "0.53.0" # x-release-please-version

src/mixedbread/types/scored_text_input_chunk.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,6 @@ class ScoredTextInputChunk(BaseModel):
7272

7373
context: Optional[str] = None
7474
"""LLM-generated context that situates this chunk within its source document"""
75+
76+
summary: Optional[str] = None
77+
"""summary of the text chunk"""

src/mixedbread/types/stores/text_input_chunk.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ class TextInputChunk(BaseModel):
5454

5555
context: Optional[str] = None
5656
"""LLM-generated context that situates this chunk within its source document"""
57+
58+
summary: Optional[str] = None
59+
"""summary of the text chunk"""

0 commit comments

Comments
 (0)