This commit is contained in:
Alina Ryan 2025-12-03 01:04:10 +00:00 committed by GitHub
commit 0cd2329dbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 603 additions and 0 deletions

View file

@ -10536,6 +10536,73 @@ components:
required:
- reasoning_tokens
title: OutputTokensDetails
ProcessFileRequest:
properties:
file_data:
type: string
format: binary
title: File Data
filename:
type: string
title: Filename
options:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
chunking_strategy:
anyOf:
- oneOf:
- $ref: '#/components/schemas/VectorStoreChunkingStrategyAuto'
title: VectorStoreChunkingStrategyAuto
- $ref: '#/components/schemas/VectorStoreChunkingStrategyStatic'
title: VectorStoreChunkingStrategyStatic
discriminator:
propertyName: type
mapping:
auto: '#/components/schemas/VectorStoreChunkingStrategyAuto'
static: '#/components/schemas/VectorStoreChunkingStrategyStatic'
title: VectorStoreChunkingStrategyAuto | VectorStoreChunkingStrategyStatic
- type: 'null'
title: Chunking Strategy
include_embeddings:
type: boolean
title: Include Embeddings
default: false
type: object
required:
- file_data
- filename
title: ProcessFileRequest
ProcessedContent:
properties:
content:
type: string
title: Content
chunks:
anyOf:
- items:
$ref: '#/components/schemas/Chunk-Output'
type: array
- type: 'null'
embeddings:
anyOf:
- items:
items:
type: number
type: array
type: array
- type: 'null'
metadata:
additionalProperties: true
type: object
title: Metadata
type: object
required:
- content
- metadata
title: ProcessedContent
description: Result of file processing operation.
SearchRankingOptions:
properties:
ranker:
@ -11142,6 +11209,7 @@ components:
- benchmarks
- tool_groups
- files
- file_processors
- prompts
- conversations
- inspect