mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-27 06:28:50 +00:00
Merge 7123e9723c
into cbe89d2bdd
This commit is contained in:
commit
b76d629ed2
9 changed files with 168 additions and 0 deletions
88
docs/_static/llama-stack-spec.html
vendored
88
docs/_static/llama-stack-spec.html
vendored
|
@ -5588,6 +5588,28 @@
|
|||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/ToolParamDefinition"
|
||||
}
|
||||
},
|
||||
"annotations": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"read_only_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"destructive_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idempotent_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_world_hint": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"title": "ToolAnnotations"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
@ -6488,6 +6510,28 @@
|
|||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"annotations": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"read_only_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"destructive_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idempotent_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_world_hint": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"title": "ToolAnnotations"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
@ -8502,6 +8546,28 @@
|
|||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"annotations": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"read_only_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"destructive_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idempotent_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_world_hint": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"title": "ToolAnnotations"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
@ -11027,6 +11093,28 @@
|
|||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"annotations": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"read_only_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"destructive_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idempotent_hint": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_world_hint": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"title": "ToolAnnotations"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
60
docs/_static/llama-stack-spec.yaml
vendored
60
docs/_static/llama-stack-spec.yaml
vendored
|
@ -3940,6 +3940,21 @@ components:
|
|||
type: object
|
||||
additionalProperties:
|
||||
$ref: '#/components/schemas/ToolParamDefinition'
|
||||
annotations:
|
||||
type: object
|
||||
properties:
|
||||
title:
|
||||
type: string
|
||||
read_only_hint:
|
||||
type: boolean
|
||||
destructive_hint:
|
||||
type: boolean
|
||||
idempotent_hint:
|
||||
type: boolean
|
||||
open_world_hint:
|
||||
type: boolean
|
||||
additionalProperties: false
|
||||
title: ToolAnnotations
|
||||
additionalProperties: false
|
||||
required:
|
||||
- tool_name
|
||||
|
@ -4638,6 +4653,21 @@ components:
|
|||
- type: string
|
||||
- type: array
|
||||
- type: object
|
||||
annotations:
|
||||
type: object
|
||||
properties:
|
||||
title:
|
||||
type: string
|
||||
read_only_hint:
|
||||
type: boolean
|
||||
destructive_hint:
|
||||
type: boolean
|
||||
idempotent_hint:
|
||||
type: boolean
|
||||
open_world_hint:
|
||||
type: boolean
|
||||
additionalProperties: false
|
||||
title: ToolAnnotations
|
||||
additionalProperties: false
|
||||
required:
|
||||
- name
|
||||
|
@ -5990,6 +6020,21 @@ components:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
annotations:
|
||||
type: object
|
||||
properties:
|
||||
title:
|
||||
type: string
|
||||
read_only_hint:
|
||||
type: boolean
|
||||
destructive_hint:
|
||||
type: boolean
|
||||
idempotent_hint:
|
||||
type: boolean
|
||||
open_world_hint:
|
||||
type: boolean
|
||||
additionalProperties: false
|
||||
title: ToolAnnotations
|
||||
additionalProperties: false
|
||||
required:
|
||||
- input_schema
|
||||
|
@ -7768,6 +7813,21 @@ components:
|
|||
- type: string
|
||||
- type: array
|
||||
- type: object
|
||||
annotations:
|
||||
type: object
|
||||
properties:
|
||||
title:
|
||||
type: string
|
||||
read_only_hint:
|
||||
type: boolean
|
||||
destructive_hint:
|
||||
type: boolean
|
||||
idempotent_hint:
|
||||
type: boolean
|
||||
open_world_hint:
|
||||
type: boolean
|
||||
additionalProperties: false
|
||||
title: ToolAnnotations
|
||||
additionalProperties: false
|
||||
required:
|
||||
- identifier
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue