mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
Update docs
This commit is contained in:
parent
7d6c0aaf11
commit
937464252c
5 changed files with 635 additions and 153 deletions
104
docs/static/experimental-llama-stack-spec.yaml
vendored
104
docs/static/experimental-llama-stack-spec.yaml
vendored
|
|
@ -1158,15 +1158,15 @@ components:
|
|||
type: number
|
||||
title: Logprob
|
||||
top_logprobs:
|
||||
items:
|
||||
$ref: '#/components/schemas/OpenAITopLogProb'
|
||||
type: array
|
||||
title: Top Logprobs
|
||||
anyOf:
|
||||
- items:
|
||||
$ref: '#/components/schemas/OpenAITopLogProb'
|
||||
type: array
|
||||
- type: 'null'
|
||||
type: object
|
||||
required:
|
||||
- token
|
||||
- logprob
|
||||
- top_logprobs
|
||||
title: OpenAITokenLogProb
|
||||
description: |-
|
||||
The log probability for a token from an OpenAI-compatible chat completion response.
|
||||
|
|
@ -2254,15 +2254,22 @@ components:
|
|||
OpenAIResponseOutputMessageContentOutputText:
|
||||
properties:
|
||||
text:
|
||||
type: string
|
||||
title: Text
|
||||
type:
|
||||
type: string
|
||||
type:
|
||||
const: output_text
|
||||
title: Type
|
||||
default: output_text
|
||||
title: Type
|
||||
type: string
|
||||
annotations:
|
||||
items:
|
||||
discriminator:
|
||||
mapping:
|
||||
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||
file_citation: '#/components/schemas/OpenAIResponseAnnotationFileCitation'
|
||||
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||
propertyName: type
|
||||
oneOf:
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationFileCitation'
|
||||
title: OpenAIResponseAnnotationFileCitation
|
||||
|
|
@ -2272,20 +2279,20 @@ components:
|
|||
title: OpenAIResponseAnnotationContainerFileCitation
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||
title: OpenAIResponseAnnotationFilePath
|
||||
discriminator:
|
||||
propertyName: type
|
||||
mapping:
|
||||
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||
file_citation: '#/components/schemas/OpenAIResponseAnnotationFileCitation'
|
||||
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||
title: OpenAIResponseAnnotationFileCitation | ... (4 variants)
|
||||
type: array
|
||||
title: Annotations
|
||||
type: object
|
||||
type: array
|
||||
logprobs:
|
||||
anyOf:
|
||||
- items:
|
||||
$ref: '#/components/schemas/OpenAITokenLogProb'
|
||||
type: array
|
||||
- type: 'null'
|
||||
nullable: true
|
||||
required:
|
||||
- text
|
||||
title: OpenAIResponseOutputMessageContentOutputText
|
||||
type: object
|
||||
OpenAIResponseOutputMessageFileSearchToolCall:
|
||||
properties:
|
||||
id:
|
||||
|
|
@ -3792,8 +3799,7 @@ components:
|
|||
logprobs:
|
||||
anyOf:
|
||||
- items:
|
||||
additionalProperties: true
|
||||
type: object
|
||||
$ref: '#/components/schemas/OpenAITokenLogProb'
|
||||
type: array
|
||||
- type: 'null'
|
||||
nullable: true
|
||||
|
|
@ -4555,6 +4561,13 @@ components:
|
|||
item_id:
|
||||
title: Item Id
|
||||
type: string
|
||||
logprobs:
|
||||
anyOf:
|
||||
- items:
|
||||
$ref: '#/components/schemas/OpenAITokenLogProb'
|
||||
type: array
|
||||
- type: 'null'
|
||||
nullable: true
|
||||
output_index:
|
||||
title: Output Index
|
||||
type: integer
|
||||
|
|
@ -7656,19 +7669,19 @@ components:
|
|||
title: list[OpenAIResponseInputMessageContentText | OpenAIResponseInputMessageContentImage | OpenAIResponseInputMessageContentFile]
|
||||
- items:
|
||||
oneOf:
|
||||
- $ref: '#/components/schemas/OpenAIResponseOutputMessageContentOutputText'
|
||||
title: OpenAIResponseOutputMessageContentOutputText
|
||||
- $ref: '#/components/schemas/OpenAIResponseOutputMessageContentOutputText-Output'
|
||||
title: OpenAIResponseOutputMessageContentOutputText-Output
|
||||
- $ref: '#/components/schemas/OpenAIResponseContentPartRefusal'
|
||||
title: OpenAIResponseContentPartRefusal
|
||||
discriminator:
|
||||
propertyName: type
|
||||
mapping:
|
||||
output_text: '#/components/schemas/OpenAIResponseOutputMessageContentOutputText'
|
||||
output_text: '#/components/schemas/OpenAIResponseOutputMessageContentOutputText-Output'
|
||||
refusal: '#/components/schemas/OpenAIResponseContentPartRefusal'
|
||||
title: OpenAIResponseOutputMessageContentOutputText | OpenAIResponseContentPartRefusal
|
||||
title: OpenAIResponseOutputMessageContentOutputText-Output | OpenAIResponseContentPartRefusal
|
||||
type: array
|
||||
title: list[OpenAIResponseOutputMessageContentOutputText | OpenAIResponseContentPartRefusal]
|
||||
title: string | list[OpenAIResponseInputMessageContentText | OpenAIResponseInputMessageContentImage | OpenAIResponseInputMessageContentFile] | list[OpenAIResponseOutputMessageContentOutputText | OpenAIResponseContentPartRefusal]
|
||||
title: list[OpenAIResponseOutputMessageContentOutputText-Output | OpenAIResponseContentPartRefusal]
|
||||
title: string | list[OpenAIResponseInputMessageContentText | OpenAIResponseInputMessageContentImage | OpenAIResponseInputMessageContentFile] | list[OpenAIResponseOutputMessageContentOutputText-Output | OpenAIResponseContentPartRefusal]
|
||||
role:
|
||||
title: Role
|
||||
type: string
|
||||
|
|
@ -7701,6 +7714,47 @@ components:
|
|||
They are all under one type because the Responses API gives them all
|
||||
the same "type" value, and there is no way to tell them apart in certain
|
||||
scenarios.
|
||||
OpenAIResponseOutputMessageContentOutputText-Output:
|
||||
properties:
|
||||
text:
|
||||
type: string
|
||||
title: Text
|
||||
type:
|
||||
type: string
|
||||
const: output_text
|
||||
title: Type
|
||||
default: output_text
|
||||
annotations:
|
||||
items:
|
||||
oneOf:
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationFileCitation'
|
||||
title: OpenAIResponseAnnotationFileCitation
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||
title: OpenAIResponseAnnotationCitation
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||
title: OpenAIResponseAnnotationContainerFileCitation
|
||||
- $ref: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||
title: OpenAIResponseAnnotationFilePath
|
||||
discriminator:
|
||||
propertyName: type
|
||||
mapping:
|
||||
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||
file_citation: '#/components/schemas/OpenAIResponseAnnotationFileCitation'
|
||||
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||
title: OpenAIResponseAnnotationFileCitation | ... (4 variants)
|
||||
type: array
|
||||
title: Annotations
|
||||
logprobs:
|
||||
anyOf:
|
||||
- items:
|
||||
$ref: '#/components/schemas/OpenAITokenLogProb'
|
||||
type: array
|
||||
- type: 'null'
|
||||
type: object
|
||||
required:
|
||||
- text
|
||||
title: OpenAIResponseOutputMessageContentOutputText
|
||||
OpenAIResponseOutputMessageFileSearchToolCallResults:
|
||||
properties:
|
||||
attributes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue