mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-24 06:08:04 +00:00
a
This commit is contained in:
parent
2788761f6e
commit
20c527eded
4 changed files with 43 additions and 11 deletions
24
docs/_static/llama-stack-spec.html
vendored
24
docs/_static/llama-stack-spec.html
vendored
|
|
@ -11694,13 +11694,16 @@
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"api": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"description": "The API name this provider implements"
|
||||
},
|
||||
"provider_id": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"description": "Unique identifier for the provider"
|
||||
},
|
||||
"provider_type": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"description": "The type of provider implementation"
|
||||
},
|
||||
"config": {
|
||||
"type": "object",
|
||||
|
|
@ -11725,7 +11728,8 @@
|
|||
"type": "object"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"description": "Configuration parameters for the provider"
|
||||
},
|
||||
"health": {
|
||||
"type": "object",
|
||||
|
|
@ -11750,7 +11754,8 @@
|
|||
"type": "object"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"description": "Current health status of the provider"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
@ -11761,7 +11766,8 @@
|
|||
"config",
|
||||
"health"
|
||||
],
|
||||
"title": "ProviderInfo"
|
||||
"title": "ProviderInfo",
|
||||
"description": "Information about a registered provider including its configuration and health status."
|
||||
},
|
||||
"InvokeToolRequest": {
|
||||
"type": "object",
|
||||
|
|
@ -12200,14 +12206,16 @@
|
|||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ProviderInfo"
|
||||
}
|
||||
},
|
||||
"description": "List of provider information objects"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"data"
|
||||
],
|
||||
"title": "ListProvidersResponse"
|
||||
"title": "ListProvidersResponse",
|
||||
"description": "Response containing a list of all available providers."
|
||||
},
|
||||
"RouteInfo": {
|
||||
"type": "object",
|
||||
|
|
|
|||
12
docs/_static/llama-stack-spec.yaml
vendored
12
docs/_static/llama-stack-spec.yaml
vendored
|
|
@ -8441,10 +8441,13 @@ components:
|
|||
properties:
|
||||
api:
|
||||
type: string
|
||||
description: The API name this provider implements
|
||||
provider_id:
|
||||
type: string
|
||||
description: Unique identifier for the provider
|
||||
provider_type:
|
||||
type: string
|
||||
description: The type of provider implementation
|
||||
config:
|
||||
type: object
|
||||
additionalProperties:
|
||||
|
|
@ -8455,6 +8458,8 @@ components:
|
|||
- type: string
|
||||
- type: array
|
||||
- type: object
|
||||
description: >-
|
||||
Configuration parameters for the provider
|
||||
health:
|
||||
type: object
|
||||
additionalProperties:
|
||||
|
|
@ -8465,6 +8470,7 @@ components:
|
|||
- type: string
|
||||
- type: array
|
||||
- type: object
|
||||
description: Current health status of the provider
|
||||
additionalProperties: false
|
||||
required:
|
||||
- api
|
||||
|
|
@ -8473,6 +8479,9 @@ components:
|
|||
- config
|
||||
- health
|
||||
title: ProviderInfo
|
||||
description: >-
|
||||
Information about a registered provider including its configuration and health
|
||||
status.
|
||||
InvokeToolRequest:
|
||||
type: object
|
||||
properties:
|
||||
|
|
@ -8787,10 +8796,13 @@ components:
|
|||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/ProviderInfo'
|
||||
description: List of provider information objects
|
||||
additionalProperties: false
|
||||
required:
|
||||
- data
|
||||
title: ListProvidersResponse
|
||||
description: >-
|
||||
Response containing a list of all available providers.
|
||||
RouteInfo:
|
||||
type: object
|
||||
properties:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue