mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
chore: re-add missing decorator
Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
2785819aa7
commit
1b982ff2b6
14 changed files with 570 additions and 0 deletions
112
docs/static/deprecated-llama-stack-spec.yaml
vendored
112
docs/static/deprecated-llama-stack-spec.yaml
vendored
|
|
@ -4923,6 +4923,17 @@ components:
|
|||
- scoring_functions
|
||||
title: Benchmark
|
||||
type: object
|
||||
ListBenchmarksResponse:
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/Benchmark'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListBenchmarksResponse
|
||||
type: object
|
||||
ImageDelta:
|
||||
description: An image content delta for streaming responses.
|
||||
properties:
|
||||
|
|
@ -5373,6 +5384,18 @@ components:
|
|||
- source
|
||||
title: Dataset
|
||||
type: object
|
||||
ListDatasetsResponse:
|
||||
description: Response from listing datasets.
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/Dataset'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListDatasetsResponse
|
||||
type: object
|
||||
Error:
|
||||
description: Error response from the API. Roughly follows RFC 7807.
|
||||
properties:
|
||||
|
|
@ -7355,6 +7378,17 @@ components:
|
|||
- owned_by
|
||||
title: OpenAIModel
|
||||
type: object
|
||||
OpenAIListModelsResponse:
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/OpenAIModel'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: OpenAIListModelsResponse
|
||||
type: object
|
||||
DPOLossType:
|
||||
enum:
|
||||
- sigmoid
|
||||
|
|
@ -7444,6 +7478,26 @@ components:
|
|||
default: false
|
||||
title: EfficiencyConfig
|
||||
type: object
|
||||
PostTrainingJob:
|
||||
properties:
|
||||
job_uuid:
|
||||
title: Job Uuid
|
||||
type: string
|
||||
required:
|
||||
- job_uuid
|
||||
title: PostTrainingJob
|
||||
type: object
|
||||
ListPostTrainingJobsResponse:
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/PostTrainingJob'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListPostTrainingJobsResponse
|
||||
type: object
|
||||
OptimizerType:
|
||||
description: Available optimizer algorithms for training.
|
||||
enum:
|
||||
|
|
@ -7678,6 +7732,18 @@ components:
|
|||
- prompt_id
|
||||
title: Prompt
|
||||
type: object
|
||||
ListPromptsResponse:
|
||||
description: Response model to list prompts.
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/Prompt'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListPromptsResponse
|
||||
type: object
|
||||
ProviderInfo:
|
||||
description: Information about a registered provider including its configuration and health status.
|
||||
properties:
|
||||
|
|
@ -7706,6 +7772,18 @@ components:
|
|||
- health
|
||||
title: ProviderInfo
|
||||
type: object
|
||||
ListProvidersResponse:
|
||||
description: Response containing a list of all available providers.
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/ProviderInfo'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListProvidersResponse
|
||||
type: object
|
||||
ModerationObjectResults:
|
||||
description: A moderation object.
|
||||
properties:
|
||||
|
|
@ -7835,6 +7913,28 @@ components:
|
|||
- results
|
||||
title: ScoreResponse
|
||||
type: object
|
||||
ListScoringFunctionsResponse:
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/ScoringFn'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListScoringFunctionsResponse
|
||||
type: object
|
||||
ListShieldsResponse:
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/Shield'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListShieldsResponse
|
||||
type: object
|
||||
ToolDef:
|
||||
description: Tool definition used in runtime contexts.
|
||||
properties:
|
||||
|
|
@ -7885,6 +7985,18 @@ components:
|
|||
- data
|
||||
title: ListToolDefsResponse
|
||||
type: object
|
||||
ListToolGroupsResponse:
|
||||
description: Response containing a list of tool groups.
|
||||
properties:
|
||||
data:
|
||||
items:
|
||||
$ref: '#/components/schemas/ToolGroup'
|
||||
title: Data
|
||||
type: array
|
||||
required:
|
||||
- data
|
||||
title: ListToolGroupsResponse
|
||||
type: object
|
||||
ToolGroupInput:
|
||||
description: Input data for registering a tool group.
|
||||
properties:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue