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.1.0-alpha.33"
".": "0.1.0-alpha.34"
}
4 changes: 3 additions & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
configured_endpoints: 32
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-2ef86079ac853f4d03a966ed6b8407bc42c01a5bc8ec89070ebaf5c49e4f56b8.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-e49fa63938c7d1a40e291d7b3f486a09b88afbbecb89bb42e4f06438a1ea9f21.yml
openapi_spec_hash: 09cf222f034cb196974b7c7c131cc860
config_hash: 52e7472faf7b81b5fda98bd67bd7d0d9
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-alpha.34 (2025-03-28)

Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.33...v0.1.0-alpha.34)

### Features

* **api:** update via SDK Studio ([#158](https://github.com/mixedbread-ai/mixedbread-python/issues/158)) ([6e46412](https://github.com/mixedbread-ai/mixedbread-python/commit/6e46412e9a3537a3fb52dc93a857e1d696532fca))


### Chores

* add hash of OpenAPI spec/config inputs to .stats.yml ([#156](https://github.com/mixedbread-ai/mixedbread-python/issues/156)) ([939d44d](https://github.com/mixedbread-ai/mixedbread-python/commit/939d44d81db7d36178cb1834c5b32e562dd62791))

## 0.1.0-alpha.33 (2025-03-27)

Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)
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.1.0-alpha.33"
version = "0.1.0-alpha.34"
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.1.0-alpha.33" # x-release-please-version
__version__ = "0.1.0-alpha.34" # x-release-please-version
3 changes: 3 additions & 0 deletions src/mixedbread/types/scored_vector_store_chunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ class ScoredVectorStoreChunk(BaseModel):
file_id: str
"""file id"""

filename: str
"""filename"""

vector_store_id: str
"""vector store id"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ class ScoredVectorStoreFile(BaseModel):
id: str
"""Unique identifier for the file"""

filename: Optional[str] = None
"""Name of the file"""

metadata: Optional[object] = None
"""Optional file metadata"""

Expand Down
3 changes: 3 additions & 0 deletions src/mixedbread/types/vector_stores/vector_store_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ class VectorStoreFile(BaseModel):
id: str
"""Unique identifier for the file"""

filename: Optional[str] = None
"""Name of the file"""

metadata: Optional[object] = None
"""Optional file metadata"""

Expand Down
Loading