forked from phoenix-oss/llama-stack-mirror
openapi
This commit is contained in:
parent
cbb53af701
commit
7854885e5a
2 changed files with 80 additions and 46 deletions
72
docs/_static/llama-stack-spec.html
vendored
72
docs/_static/llama-stack-spec.html
vendored
|
@ -6502,7 +6502,52 @@
|
||||||
"title": "FileResponse",
|
"title": "FileResponse",
|
||||||
"description": "Response representing a file entry."
|
"description": "Response representing a file entry."
|
||||||
},
|
},
|
||||||
"Model": {
|
"EqualityGrader": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "equality",
|
||||||
|
"default": "equality"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "EqualityGrader"
|
||||||
|
},
|
||||||
|
"FactualityGrader": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "factuality",
|
||||||
|
"default": "factuality"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "FactualityGrader"
|
||||||
|
},
|
||||||
|
"FaithfulnessGrader": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"const": "faithfulness",
|
||||||
|
"default": "faithfulness"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "FaithfulnessGrader"
|
||||||
|
},
|
||||||
|
"Grader": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"identifier": {
|
"identifier": {
|
||||||
|
@ -7854,31 +7899,6 @@
|
||||||
"title": "IterrowsResponse",
|
"title": "IterrowsResponse",
|
||||||
"description": "A paginated list of rows from a dataset."
|
"description": "A paginated list of rows from a dataset."
|
||||||
},
|
},
|
||||||
"Job": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"job_id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"status": {
|
|
||||||
"type": "string",
|
|
||||||
"enum": [
|
|
||||||
"completed",
|
|
||||||
"in_progress",
|
|
||||||
"failed",
|
|
||||||
"scheduled",
|
|
||||||
"cancelled"
|
|
||||||
],
|
|
||||||
"title": "JobStatus"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"additionalProperties": false,
|
|
||||||
"required": [
|
|
||||||
"job_id",
|
|
||||||
"status"
|
|
||||||
],
|
|
||||||
"title": "Job"
|
|
||||||
},
|
|
||||||
"ListAgentSessionsResponse": {
|
"ListAgentSessionsResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
54
docs/_static/llama-stack-spec.yaml
vendored
54
docs/_static/llama-stack-spec.yaml
vendored
|
@ -4563,7 +4563,40 @@ components:
|
||||||
- created_at
|
- created_at
|
||||||
title: FileResponse
|
title: FileResponse
|
||||||
description: Response representing a file entry.
|
description: Response representing a file entry.
|
||||||
Model:
|
EqualityGrader:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
const: equality
|
||||||
|
default: equality
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
title: EqualityGrader
|
||||||
|
FactualityGrader:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
const: factuality
|
||||||
|
default: factuality
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
title: FactualityGrader
|
||||||
|
FaithfulnessGrader:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
const: faithfulness
|
||||||
|
default: faithfulness
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
title: FaithfulnessGrader
|
||||||
|
Grader:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
identifier:
|
identifier:
|
||||||
|
@ -5433,25 +5466,6 @@ components:
|
||||||
- data
|
- data
|
||||||
title: IterrowsResponse
|
title: IterrowsResponse
|
||||||
description: A paginated list of rows from a dataset.
|
description: A paginated list of rows from a dataset.
|
||||||
Job:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
job_id:
|
|
||||||
type: string
|
|
||||||
status:
|
|
||||||
type: string
|
|
||||||
enum:
|
|
||||||
- completed
|
|
||||||
- in_progress
|
|
||||||
- failed
|
|
||||||
- scheduled
|
|
||||||
- cancelled
|
|
||||||
title: JobStatus
|
|
||||||
additionalProperties: false
|
|
||||||
required:
|
|
||||||
- job_id
|
|
||||||
- status
|
|
||||||
title: Job
|
|
||||||
ListAgentSessionsResponse:
|
ListAgentSessionsResponse:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue