mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-04 02:03:44 +00:00
Merge 3f51e16601 into 4237eb4aaa
This commit is contained in:
commit
0cd2329dbc
15 changed files with 603 additions and 0 deletions
68
docs/static/deprecated-llama-stack-spec.yaml
vendored
68
docs/static/deprecated-llama-stack-spec.yaml
vendored
|
|
@ -9094,6 +9094,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:
|
||||
|
|
@ -9700,6 +9767,7 @@ components:
|
|||
- benchmarks
|
||||
- tool_groups
|
||||
- files
|
||||
- file_processors
|
||||
- prompts
|
||||
- conversations
|
||||
- inspect
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue