Mixedbread deprecated_vector_stores API

The deprecated_vector_stores API from Mixedbread — 10 operation(s) for deprecated_vector_stores.

Operations 17

POST /v1/vector_stores/{vector_store_identifier}/files [DEPRECATED] Upload file to vector store #
GET /v1/vector_stores/{vector_store_identifier}/files [DEPRECATED] List vector store files #
POST /v1/vector_stores/{vector_store_identifier}/files/list [DEPRECATED] List vector store files with metadata filter #
GET /v1/vector_stores/{vector_store_identifier}/files/{file_id} [DEPRECATED] Get vector store file #
DELETE /v1/vector_stores/{vector_store_identifier}/files/{file_id} [DEPRECATED] Delete vector store file #
POST /v1/vector_stores/{vector_store_identifier}/rules [DEPRECATED] Create search rule #
GET /v1/vector_stores/{vector_store_identifier}/rules/{rule_id} [DEPRECATED] Get a search rule #
PUT /v1/vector_stores/{vector_store_identifier}/rules/{rule_id} [DEPRECATED] Update a search rule #
DELETE /v1/vector_stores/{vector_store_identifier}/rules/{rule_id} [DEPRECATED] Delete a search rule #
DELETE /v1/vector_stores/{vector_store_identifier}/rules/{rule_id}/specific [DEPRECATED] Delete a specific rule from rules array #
POST /v1/vector_stores [DEPRECATED] Create a vector store #
GET /v1/vector_stores [DEPRECATED] List vector stores #
GET /v1/vector_stores/{vector_store_identifier} [DEPRECATED] Get a vector store #
PUT /v1/vector_stores/{vector_store_identifier} [DEPRECATED] Update a vector store #
DELETE /v1/vector_stores/{vector_store_identifier} [DEPRECATED] Delete a vector store #
POST /v1/vector_stores/search [DEPRECATED] Perform semantic search across vector store chunks #
POST /v1/vector_stores/question-answering [DEPRECATED] Question answering #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mixedbread-ai-deprecated-vector-stores-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mixedbread-ai-deprecated-vector-stores-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mixedbread admin Deprecated Vector Stores API
  version: 0.1.0
  description: Mixedbread admin endpoints extracted from the canonical OpenAPI spec at https://api.mixedbread.com/openapi.json
servers:
- url: https://api.mixedbread.com
  description: mixedbread ai production server
- url: https://api.dev.mixedbread.com
  description: mixedbread ai development server
- url: http://127.0.0.1:8000
  description: mixedbread local server
- url: http://localhost:8000
  description: mixedbread local server
tags:
- name: deprecated_vector_stores
paths:
  /v1/vector_stores/{vector_store_identifier}/files:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Upload file to vector store'
      description: 'DEPRECATED: Use POST /stores/{store_identifier}/files instead'
      operationId: create_vector_store_file
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeprecatedStoreFileUpsertParams'
              description: The file to add to the vector store
      responses:
        '201':
          description: The uploaded vector store file details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreFile'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] List vector store files'
      description: 'DEPRECATED: Use POST /stores/{store_identifier}/files/list instead'
      operationId: list_vector_store_files
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 100
          minimum: 1
          description: Maximum number of items to return per page (1-100)
          examples:
          - 10
          - 20
          - 50
          default: 20
          title: Limit
        description: Maximum number of items to return per page (1-100)
      - name: after
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
          examples:
          - eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==
          title: After
        description: Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
      - name: before
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
          examples:
          - eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==
          title: Before
        description: Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
      - name: include_total
        in: query
        required: false
        schema:
          type: boolean
          description: Whether to include total count in response (expensive operation)
          examples:
          - false
          - true
          default: false
          title: Include Total
        description: Whether to include total count in response (expensive operation)
      - name: statuses
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              $ref: '#/components/schemas/StoreFileStatus'
          - type: 'null'
          description: Status to filter by
          title: Statuses
        description: Status to filter by
      responses:
        '200':
          description: The list of vector store files
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreFileListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}/files/list:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] List vector store files with metadata filter'
      description: 'DEPRECATED: Use POST /stores/{store_identifier}/files/list instead'
      operationId: list_vector_store_files_with_metadata_filter
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MetadataCursorPagination'
              description: For pagination
      responses:
        '200':
          description: List of files in the vector store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreFileListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}/files/{file_id}:
    get:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Get vector store file'
      description: 'DEPRECATED: Use GET /stores/{store_identifier}/files/{file_id} instead'
      operationId: retrieve_vector_store_file
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: file_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the file
          title: File Id
        description: The ID or name of the file
      - name: return_chunks
        in: query
        required: false
        schema:
          type: boolean
          description: Whether to return the chunks for the file
          default: false
          title: Return Chunks
        description: Whether to return the chunks for the file
      responses:
        '200':
          description: The vector store file details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreFile'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Delete vector store file'
      description: 'DEPRECATED: Use DELETE /stores/{store_identifier}/files/{file_id} instead'
      operationId: delete_vector_store_file
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: file_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the file to delete
          title: File Id
        description: The ID or name of the file to delete
      responses:
        '200':
          description: The deleted vector store file details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreFileDeleted'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}/rules:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Create search rule'
      description: 'DEPRECATED: Use POST /stores/{store_identifier}/rules instead'
      operationId: deprecated_create_search_rule
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleCreateParams'
              description: The search rule to create
      responses:
        '201':
          description: The created search rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}/rules/{rule_id}:
    get:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Get a search rule'
      description: 'DEPRECATED: Use GET /stores/{store_identifier}/rules/{rule_id} instead'
      operationId: deprecated_retrieve_search_rule
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: rule_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          description: The ID of the search rule
          title: Rule Id
        description: The ID of the search rule
      responses:
        '200':
          description: The search rule details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Update a search rule'
      description: 'DEPRECATED: Use PUT /stores/{store_identifier}/rules/{rule_id} instead'
      operationId: deprecated_update_search_rule
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: rule_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          description: The ID of the search rule to update
          title: Rule Id
        description: The ID of the search rule to update
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleUpdateParams'
              description: The fields to update
      responses:
        '200':
          description: The updated search rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Delete a search rule'
      description: 'DEPRECATED: Use DELETE /stores/{store_identifier}/rules/{rule_id} instead'
      operationId: deprecated_delete_search_rule
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: rule_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          description: The ID of the search rule to delete
          title: Rule Id
        description: The ID of the search rule to delete
      responses:
        '200':
          description: The deleted search rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleDeleted'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}/rules/{rule_id}/specific:
    delete:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Delete a specific rule from rules array'
      description: 'DEPRECATED: Use DELETE /stores/{store_identifier}/rules/{rule_id}/specific instead'
      operationId: deprecated_delete_specific_search_rule
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      - name: rule_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          description: The ID of the search rule
          title: Rule Id
        description: The ID of the search rule
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleSpecificDeleteParams'
              description: The specific rule to delete
      responses:
        '200':
          description: The updated search rule after deleting specific rule
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mxbai_omni__api__routes__v1__deprecated_vector_stores__models__SearchRuleSpecificDeleted'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Create a vector store'
      description: 'DEPRECATED: Use POST /stores instead'
      operationId: create_vector_store
      deprecated: true
      security:
      - ApiKeyAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VectorStoreCreateParams'
              description: The vector store details for creation
      responses:
        '201':
          description: The details of the created vector store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] List vector stores'
      description: 'DEPRECATED: Use GET /stores instead'
      operationId: list_vector_stores
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 100
          minimum: 1
          description: Maximum number of items to return per page (1-100)
          examples:
          - 10
          - 20
          - 50
          default: 20
          title: Limit
        description: Maximum number of items to return per page (1-100)
      - name: after
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
          examples:
          - eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==
          title: After
        description: Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
      - name: before
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
          examples:
          - eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==
          title: Before
        description: Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
      - name: include_total
        in: query
        required: false
        schema:
          type: boolean
          description: Whether to include total count in response (expensive operation)
          examples:
          - false
          - true
          default: false
          title: Include Total
        description: Whether to include total count in response (expensive operation)
      - name: q
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            minLength: 1
            maxLength: 255
          - type: 'null'
          description: Search query for fuzzy matching over name and description fields
          title: Q
        description: Search query for fuzzy matching over name and description fields
      responses:
        '200':
          description: The list of vector stores
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/{vector_store_identifier}:
    get:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Get a vector store'
      description: 'DEPRECATED: Use GET /stores/{store_identifier} instead'
      operationId: retrieve_vector_store
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      responses:
        '200':
          description: The details of the vector store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Update a vector store'
      description: 'DEPRECATED: Use PUT /stores/{store_identifier} instead'
      operationId: update_vector_store
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store
          title: Vector Store Identifier
        description: The ID or name of the vector store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VectorStoreUpdateParams'
              description: The fields to update
      responses:
        '200':
          description: The details of the updated vector store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Delete a vector store'
      description: 'DEPRECATED: Use DELETE /stores/{store_identifier} instead'
      operationId: delete_vector_store
      deprecated: true
      security:
      - ApiKeyAuth: []
      parameters:
      - name: vector_store_identifier
        in: path
        required: true
        schema:
          anyOf:
          - type: string
          - type: string
            format: uuid
          description: The ID or name of the vector store to delete
          title: Vector Store Identifier
        description: The ID or name of the vector store to delete
      responses:
        '200':
          description: The details of the deleted vector store
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreDeleted'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/vector_stores/search:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Perform semantic search across vector store chunks'
      description: 'DEPRECATED: Use POST /stores/search instead'
      operationId: search_vector_store_chunks
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VectorStoreChunkSearchParams'
              description: Search parameters including query text, filters and pagination options
        required: true
      responses:
        '200':
          description: List of semantically similar chunks with relevance scores and pagination details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreSearchResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
      - ApiKeyAuth: []
  /v1/vector_stores/question-answering:
    post:
      tags:
      - deprecated_vector_stores
      summary: '[DEPRECATED] Question answering'
      description: 'DEPRECATED: Use POST /stores/question-answering instead'
      operationId: deprecated_create_question_answering
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VectorStoreQAParams'
              description: The question answering query
        required: true
      responses:
        '200':
          description: The answer to the question
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VectorStoreQAResults'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
      - ApiKeyAuth: []
components:
  schemas:
    mxbai_omni__api__routes__v1__deprecated_vector_stores__models__ScoredAudioUrlInputChunk:
      properties:
        chunk_index:
          type: integer
          title: Chunk Index
          description: position of the chunk in a file
          examples:
          - 0
          - 1
          - 2
          - 3
          - 4
        mime_type:
          type: string
          title: Mime Type
          description: mime type of the chunk
          default: audio/mpeg
          examples:
          - audio/mpeg
        generated_metadata:
          anyOf:
          - oneOf:
            - $ref: '#/components/schemas/MarkdownChunkGeneratedMetadata'
            - $ref: '#/components/schemas/TextChunkGeneratedMetadata'
            - $ref: '#/components/schemas/PDFChunkGeneratedMetadata'
            - $ref: '#/components/schemas/CodeChunkGeneratedMetadata'
            - $ref: '#/components/schemas/AudioChunkGeneratedMetadata'
            - $ref: '#/components/schemas/VideoChunkGeneratedMetadata'
            - $ref: '#/components/schemas/ImageChunkGeneratedMetadata'
            discriminator:
              propertyName: type
              mapping:
                audio: '#/components/schemas/AudioChunkGeneratedMetadata'
                code: '#/components/schemas/CodeChunkGeneratedMetadata'
                image: '#/components/schemas/ImageChunkGeneratedMetadata'
                markdown: '#/components/schemas/MarkdownChunkGeneratedMetadata'
                pdf: '#/components/schemas/PDFChunkGeneratedMetadata'
                text: '#/components/schemas/TextChunkGeneratedMetadata'
                video: '#/components/schemas/VideoChunkGeneratedMetadata'
          - type: 'null'
          title: Generated Metadata
          description: metadata of the chunk
          examples:
          - file_size: 1024
            file_type: text/plain
            language: en
            type: text
            word_count: 100
        model:
          anyOf:
          - type: string
          - type: 'null'
          title: Model
          description: model used for this chunk
          examples:
          - text-embedding-ada-002
          - clip-vit-large-patch14
        score:
          type: number
          title: Score
          description: score of the chunk
          examples:
          - 0.5
        file_id:
          type: string
          title: File Id
          description: file id
          examples:
          - file1
        filename:
          type: string
          title: Filename
          description: filename
          examples:
          - file1
        vector_store_id:
          type: string
          title: Vector Store Id
          description: store id
          examples:
          - store1
        metadata:
          anyOf:
          - {}
          - type: 'null'
          title: Metadata
          description: file metadata
          examples:
          - key: value
        type:
          type: string
          const: audio_url
          title: Type
          description: Input type identifier
          default: audio_url
        transcription:
          anyOf:
          - type: string
          - type: 'null'
          title: Transcription
          description: speech recognition (sr) text of the audio
          examples:
          - The year 2025 reports for ..
        summary:
          anyOf:
          - type: string
          - type: 'null'
          title: Summary
          description: summary of the audio
          examples:
          - A financial report audio for 2025
        audio_url:
          anyOf:
          - $ref: '#/components/schemas/AudioUrl'
          - type: 'null'
          description: Audio URL
        sampling_rate:
          type: integer
          title: Sampling Rate
          description: The sampling rate of the audio.
      type: object
      required:
      - chunk_index
      - score
      - file_id
      - filename
      - vector_store_id
      - sampling_rate
      title: ScoredAudioUrlInputChunk
      description: Scored audio chunk for deprecated API.
    VectorStoreChunkSearchOptions:
      properties:
        score_threshold:
          type: number
          maximum: 1.0
          minimum: 0.0
          title: Score Threshold
          description: Minimum similarity score threshold
          default: 0.0
        rewrite_query:
          type: boolean
          title: Rewrite Query
          description: Whether to rewrite the query. Ignored when agentic is enabled (the agent handles query decomposition).
          default: false
        rerank:
          anyOf:
          - type: boolean
          - $ref: '#/components/schemas/RerankConfig'
          - type: 'null'
          title: Rerank
          description: Whether to rerank results and optional reranking configuration. Ignored when agentic is enabled (the agent handles ranking).
        agentic:
          anyOf:
          - type: boolean
          - $ref: '#/components/schemas/AgenticSearchConfig'
          - type: 'null'
          title: Agentic
          description: Whether to use agentic multi-query search with automatic query decomposition and ranking. When enabled, rewrite_query and rerank options are ignored.
        return_metadata:
          type: boolean
          title: Return Metadata
          description: Whether to return file metadata
          default: true
        apply_search_rules:
          type: boolean
          title: Apply Search Rules
          description: Whether to apply search rules
          default: true
      type: object
      title: VectorStoreChunkSearchOptions
      description: Options for configuring vector store chunk searches.
    VideoChunkGeneratedMetadata:
      properties:
        type:
          type: s

# --- truncated at 32 KB (109 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mixedbread-ai/refs/heads/main/openapi/mixedbread-ai-deprecated-vector-stores-api-openapi.yml