Mixedbread deprecated_vector_stores API

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

OpenAPI Specification

mixedbread-ai-deprecated-vector-stores-api-openapi.yml Raw ↑
openapi: 3.1.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:
    FileSearchResultRule:
      properties:
        query:
          type: string
          title: Query
          description: The query to trigger the rule
        store_id:
          type: string
          title: Store Id
          description: The store identifier to apply the rule to
        type:
          type: string
          const: file_search_result
          title: Type
          description: The type of substitution
        file_id:
          type: string
          title: File Id
          description: The file ID of the file to substitute
        chunk_index:
          type: integer
          minimum: 0.0
          title: Chunk Index
          description: An optional chunk index to use for the chunk substitution
          default: 0
        result_index:
          type: integer
          minimum: 0.0
          title: Result Index
          description: The index where the result will be inserted
      type: object
      required:
      - query
      - store_id
      - type
      - file_id
      - result_index
      title: FileSearchResultRule
      description: Represents a file search result rule for a vector store search.
    VectorStoreChunkSearchParams:
      properties:
        query:
          type: string
          minLength: 1
          title: Query
          description: Search query text
          examples:
          - how to configure SSL
        vector_store_identifiers:
          items:
            anyOf:
            - type: string
            - type: string
              format: uuid
          type: array
          maxItems: 16
          minItems: 1
          title: Vector Store Identifiers
          description: IDs or names of vector stores to search
        top_k:
          type: integer
          minimum: 1.0
          title: Top K
          description: Number of results to return
          default: 10
        filters:
          anyOf:
          - $ref: '#/components/schemas/SearchFilter-Input'
          - $ref: '#/components/schemas/SearchFilterCondition'
          - items:
              anyOf:
              - $ref: '#/components/schemas/SearchFilter-Input'
              - $ref: '#/components/schemas/SearchFilterCondition'
            type: array
          - type: 'null'
          title: Filters
          description: Optional filter conditions
        file_ids:
          anyOf:
          - prefixItems:
            - $ref: '#/components/schemas/ConditionOperator'
            - items:
                type: string
                format: uuid
              type: array
            type: array
            maxItems: 2
            minItems: 2
          - items:
              type: string
              format: uuid
            type: array
          - type: 'null'
          title: File Ids
          description: Optional list of file IDs to filter chunks by (inclusion filter)
          examples:
          - - 123e4567-e89b-12d3-a456-426614174000
            - 123e4567-e89b-12d3-a456-426614174001
          - - in
            - - 123e4567-e89b-12d3-a456-426614174000
          - - not_in
            - - 123e4567-e89b-12d3-a456-426614174000
        search_options:
          $ref: '#/components/schemas/VectorStoreChunkSearchOptions'
          description: Search configuration options
      type: object
      required:
      - query
      - vector_store_identifiers
      title: VectorStoreChunkSearchParams
      description: Query parameters for searching vector store chunks.
    ImageUrlInputChunk:
      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: image/jpeg
          examples:
          - image/jpeg
        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
        type:
          type: string
          const: image_url
          title: Type
          description: Input type identifier
          default: image_url
        ocr_text:
       

# --- 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