mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-12 20:12:33 +00:00
run pre-commit
This commit is contained in:
parent
fc960a35dd
commit
31105c450a
4 changed files with 82 additions and 90 deletions
45
docs/static/llama-stack-spec.html
vendored
45
docs/static/llama-stack-spec.html
vendored
|
|
@ -5670,7 +5670,28 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
<<<<<<< HEAD
|
"OpenAIResponseContentPartRefusal": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "refusal",
|
||||||
|
"default": "refusal",
|
||||||
|
"description": "Content part type identifier, always \"refusal\""
|
||||||
|
},
|
||||||
|
"refusal": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Refusal text supplied by the model"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"type",
|
||||||
|
"refusal"
|
||||||
|
],
|
||||||
|
"title": "OpenAIResponseContentPartRefusal",
|
||||||
|
"description": "Refusal content within a streamed response part."
|
||||||
|
},
|
||||||
"OpenAIResponseInputFunctionToolCallOutput": {
|
"OpenAIResponseInputFunctionToolCallOutput": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -5690,38 +5711,16 @@
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
=======
|
|
||||||
"OpenAIResponseContentPartRefusal": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"type": {
|
|
||||||
"type": "string",
|
|
||||||
"const": "refusal",
|
|
||||||
"default": "refusal",
|
|
||||||
"description": "Content part type identifier, always \"refusal\""
|
|
||||||
},
|
|
||||||
"refusal": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Refusal text supplied by the model"
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
<<<<<<< HEAD
|
|
||||||
"call_id",
|
"call_id",
|
||||||
"output",
|
"output",
|
||||||
"type"
|
"type"
|
||||||
],
|
],
|
||||||
"title": "OpenAIResponseInputFunctionToolCallOutput",
|
"title": "OpenAIResponseInputFunctionToolCallOutput",
|
||||||
"description": "This represents the output of a function call that gets passed back to the model."
|
"description": "This represents the output of a function call that gets passed back to the model."
|
||||||
=======
|
|
||||||
"type",
|
|
||||||
"refusal"
|
|
||||||
],
|
|
||||||
"title": "OpenAIResponseContentPartRefusal",
|
|
||||||
"description": "Refusal content within a streamed response part."
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
},
|
},
|
||||||
"OpenAIResponseInputMessageContent": {
|
"OpenAIResponseInputMessageContent": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
|
|
||||||
41
docs/static/llama-stack-spec.yaml
vendored
41
docs/static/llama-stack-spec.yaml
vendored
|
|
@ -4291,7 +4291,25 @@ components:
|
||||||
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||||
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||||
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||||
<<<<<<< HEAD
|
OpenAIResponseContentPartRefusal:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
const: refusal
|
||||||
|
default: refusal
|
||||||
|
description: >-
|
||||||
|
Content part type identifier, always "refusal"
|
||||||
|
refusal:
|
||||||
|
type: string
|
||||||
|
description: Refusal text supplied by the model
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
- refusal
|
||||||
|
title: OpenAIResponseContentPartRefusal
|
||||||
|
description: >-
|
||||||
|
Refusal content within a streamed response part.
|
||||||
"OpenAIResponseInputFunctionToolCallOutput":
|
"OpenAIResponseInputFunctionToolCallOutput":
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
@ -4317,27 +4335,6 @@ components:
|
||||||
description: >-
|
description: >-
|
||||||
This represents the output of a function call that gets passed back to the
|
This represents the output of a function call that gets passed back to the
|
||||||
model.
|
model.
|
||||||
=======
|
|
||||||
OpenAIResponseContentPartRefusal:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
type:
|
|
||||||
type: string
|
|
||||||
const: refusal
|
|
||||||
default: refusal
|
|
||||||
description: >-
|
|
||||||
Content part type identifier, always "refusal"
|
|
||||||
refusal:
|
|
||||||
type: string
|
|
||||||
description: Refusal text supplied by the model
|
|
||||||
additionalProperties: false
|
|
||||||
required:
|
|
||||||
- type
|
|
||||||
- refusal
|
|
||||||
title: OpenAIResponseContentPartRefusal
|
|
||||||
description: >-
|
|
||||||
Refusal content within a streamed response part.
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
OpenAIResponseInputMessageContent:
|
OpenAIResponseInputMessageContent:
|
||||||
oneOf:
|
oneOf:
|
||||||
- $ref: '#/components/schemas/OpenAIResponseInputMessageContentText'
|
- $ref: '#/components/schemas/OpenAIResponseInputMessageContentText'
|
||||||
|
|
|
||||||
45
docs/static/stainless-llama-stack-spec.html
vendored
45
docs/static/stainless-llama-stack-spec.html
vendored
|
|
@ -7342,7 +7342,28 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
<<<<<<< HEAD
|
"OpenAIResponseContentPartRefusal": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "refusal",
|
||||||
|
"default": "refusal",
|
||||||
|
"description": "Content part type identifier, always \"refusal\""
|
||||||
|
},
|
||||||
|
"refusal": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Refusal text supplied by the model"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"type",
|
||||||
|
"refusal"
|
||||||
|
],
|
||||||
|
"title": "OpenAIResponseContentPartRefusal",
|
||||||
|
"description": "Refusal content within a streamed response part."
|
||||||
|
},
|
||||||
"OpenAIResponseInputFunctionToolCallOutput": {
|
"OpenAIResponseInputFunctionToolCallOutput": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -7362,38 +7383,16 @@
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
=======
|
|
||||||
"OpenAIResponseContentPartRefusal": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"type": {
|
|
||||||
"type": "string",
|
|
||||||
"const": "refusal",
|
|
||||||
"default": "refusal",
|
|
||||||
"description": "Content part type identifier, always \"refusal\""
|
|
||||||
},
|
|
||||||
"refusal": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Refusal text supplied by the model"
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
<<<<<<< HEAD
|
|
||||||
"call_id",
|
"call_id",
|
||||||
"output",
|
"output",
|
||||||
"type"
|
"type"
|
||||||
],
|
],
|
||||||
"title": "OpenAIResponseInputFunctionToolCallOutput",
|
"title": "OpenAIResponseInputFunctionToolCallOutput",
|
||||||
"description": "This represents the output of a function call that gets passed back to the model."
|
"description": "This represents the output of a function call that gets passed back to the model."
|
||||||
=======
|
|
||||||
"type",
|
|
||||||
"refusal"
|
|
||||||
],
|
|
||||||
"title": "OpenAIResponseContentPartRefusal",
|
|
||||||
"description": "Refusal content within a streamed response part."
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
},
|
},
|
||||||
"OpenAIResponseInputMessageContent": {
|
"OpenAIResponseInputMessageContent": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
|
|
||||||
41
docs/static/stainless-llama-stack-spec.yaml
vendored
41
docs/static/stainless-llama-stack-spec.yaml
vendored
|
|
@ -5504,7 +5504,25 @@ components:
|
||||||
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
url_citation: '#/components/schemas/OpenAIResponseAnnotationCitation'
|
||||||
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
container_file_citation: '#/components/schemas/OpenAIResponseAnnotationContainerFileCitation'
|
||||||
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
file_path: '#/components/schemas/OpenAIResponseAnnotationFilePath'
|
||||||
<<<<<<< HEAD
|
OpenAIResponseContentPartRefusal:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
const: refusal
|
||||||
|
default: refusal
|
||||||
|
description: >-
|
||||||
|
Content part type identifier, always "refusal"
|
||||||
|
refusal:
|
||||||
|
type: string
|
||||||
|
description: Refusal text supplied by the model
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
- refusal
|
||||||
|
title: OpenAIResponseContentPartRefusal
|
||||||
|
description: >-
|
||||||
|
Refusal content within a streamed response part.
|
||||||
"OpenAIResponseInputFunctionToolCallOutput":
|
"OpenAIResponseInputFunctionToolCallOutput":
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
@ -5530,27 +5548,6 @@ components:
|
||||||
description: >-
|
description: >-
|
||||||
This represents the output of a function call that gets passed back to the
|
This represents the output of a function call that gets passed back to the
|
||||||
model.
|
model.
|
||||||
=======
|
|
||||||
OpenAIResponseContentPartRefusal:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
type:
|
|
||||||
type: string
|
|
||||||
const: refusal
|
|
||||||
default: refusal
|
|
||||||
description: >-
|
|
||||||
Content part type identifier, always "refusal"
|
|
||||||
refusal:
|
|
||||||
type: string
|
|
||||||
description: Refusal text supplied by the model
|
|
||||||
additionalProperties: false
|
|
||||||
required:
|
|
||||||
- type
|
|
||||||
- refusal
|
|
||||||
title: OpenAIResponseContentPartRefusal
|
|
||||||
description: >-
|
|
||||||
Refusal content within a streamed response part.
|
|
||||||
>>>>>>> 181046f9 (feat: Add responses and safety impl extra_body)
|
|
||||||
OpenAIResponseInputMessageContent:
|
OpenAIResponseInputMessageContent:
|
||||||
oneOf:
|
oneOf:
|
||||||
- $ref: '#/components/schemas/OpenAIResponseInputMessageContentText'
|
- $ref: '#/components/schemas/OpenAIResponseInputMessageContentText'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue