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.65.0"
".": "0.66.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: 55
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-8a6699853ccfc469a82ccbbc7d0d83eba4290614dbc11d22ac2c420ef457de06.yml
openapi_spec_hash: 19b229526d38bb034f39f08dead56e68
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread/mixedbread-fe78c77edfd65d345d21ca8f29af4cbe6c977cb999e514f8073b9f3d9b721312.yml
openapi_spec_hash: 6e8c61ec14c016c1c74881de9e17d53d
config_hash: 594a43c9cb8089f079bb9c5442646791
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.66.0 (2026-05-11)

Full Changelog: [v0.65.0...v0.66.0](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.65.0...v0.66.0)

### Features

* **api:** api update ([47cb692](https://github.com/mixedbread-ai/mixedbread-ts/commit/47cb692f8fa9585e92f539f95a129775d4a3bb0c))

## 0.65.0 (2026-05-08)

Full Changelog: [v0.64.0...v0.65.0](https://github.com/mixedbread-ai/mixedbread-ts/compare/v0.64.0...v0.65.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mixedbread/sdk",
"version": "0.65.0",
"version": "0.66.0",
"description": "The official TypeScript library for the Mixedbread API",
"author": "Mixedbread <support@mixedbread.com>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions src/resources/stores/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,11 @@ export interface AudioURLInputChunk {
*/
transcription?: string | null;

/**
* summary of the audio
*/
summary?: string | null;

/**
* Model for audio URL validation.
*/
Expand Down
28 changes: 26 additions & 2 deletions src/resources/stores/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,11 @@ export interface AgenticSearchConfig {
strict_top_k?: boolean;

/**
* Whether to provide media content to the agent for non-text modalities
* Controls when retrieved image content is provided to the agent. `auto` sends
* images only when no OCR text or summary is available, `never` disables image
* content, and `always` sends image content when available.
*/
multimodal?: boolean;
media_content?: 'auto' | 'never' | 'always';

/**
* Additional custom instructions (followed only when not in conflict with existing
Expand Down Expand Up @@ -512,6 +514,11 @@ export interface ScoredAudioURLInputChunk {
*/
transcription?: string | null;

/**
* summary of the audio
*/
summary?: string | null;

/**
* Model for audio URL validation.
*/
Expand Down Expand Up @@ -1023,6 +1030,8 @@ export interface StoreSearchResponse {
data: Array<
ScoredTextInputChunk | ScoredImageURLInputChunk | ScoredAudioURLInputChunk | ScoredVideoURLInputChunk
>;

[k: string]: unknown;
}

export interface StoreCreateParams {
Expand Down Expand Up @@ -1147,6 +1156,21 @@ export interface StoreMetadataFacetsParams {
* Optional list of facets to return. Use dot for nested fields.
*/
facets?: Array<string> | null;

/**
* Maximum number of distinct metadata fields (keys) to return.
*/
max_fields?: number;

/**
* Maximum number of distinct values returned per field, ranked by count.
*/
max_values_per_field?: number;

/**
* Maximum number of store files scanned to compute facets.
*/
max_files?: number;
}

export interface StoreQuestionAnsweringParams {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.65.0'; // x-release-please-version
export const VERSION = '0.66.0'; // x-release-please-version
3 changes: 3 additions & 0 deletions tests/api-resources/stores/stores.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ describe('resource stores', () => {
apply_search_rules: true,
},
facets: ['string'],
max_fields: 1,
max_values_per_field: 1,
max_files: 1,
});
});

Expand Down
Loading