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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.52.0"
".": "0.53.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 56
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-284113064cbdc0dc556ccec620ed46da0c0f6163b9ff32ad0b3e9839a8a867df.yml
openapi_spec_hash: af5a070b206b9486beb5f2edd7b6a1c4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-a5ced984ffa6baffe454ae18348039c0c7e0ac2c1a3b59875e8b3352d4af2ac5.yml
openapi_spec_hash: c22196b7ee066ff04308ca2debc619ff
config_hash: ea30439e415ad92fd65dd21586143acc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.53.0 (2026-05-21)

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

### Features

* **api:** api update ([0cc719f](https://github.com/mixedbread-ai/mixedbread-python/commit/0cc719f25fcb12f2990cb027069d04f336987870))

## 0.52.0 (2026-05-20)

Full Changelog: [v0.51.0...v0.52.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.51.0...v0.52.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mixedbread"
version = "0.52.0"
version = "0.53.0"
description = "The official Python library for the Mixedbread API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/mixedbread/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "mixedbread"
__version__ = "0.52.0" # x-release-please-version
__version__ = "0.53.0" # x-release-please-version
3 changes: 3 additions & 0 deletions src/mixedbread/types/scored_text_input_chunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,6 @@ class ScoredTextInputChunk(BaseModel):

context: Optional[str] = None
"""LLM-generated context that situates this chunk within its source document"""

summary: Optional[str] = None
"""summary of the text chunk"""
3 changes: 3 additions & 0 deletions src/mixedbread/types/stores/text_input_chunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@ class TextInputChunk(BaseModel):

context: Optional[str] = None
"""LLM-generated context that situates this chunk within its source document"""

summary: Optional[str] = None
"""summary of the text chunk"""
Loading