mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 00:12:24 +00:00
address feedback
This commit is contained in:
parent
ee542a7373
commit
16d1f66f55
9 changed files with 286 additions and 149 deletions
|
|
@ -38,22 +38,18 @@ components:
|
|||
items:
|
||||
type: string
|
||||
type: array
|
||||
preprocessing_tools:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
sampling_params:
|
||||
$ref: '#/components/schemas/SamplingParams'
|
||||
tool_choice:
|
||||
$ref: '#/components/schemas/ToolChoice'
|
||||
default: auto
|
||||
tool_names:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
tool_prompt_format:
|
||||
$ref: '#/components/schemas/ToolPromptFormat'
|
||||
default: json
|
||||
tools:
|
||||
items:
|
||||
$ref: '#/components/schemas/AgentTool'
|
||||
type: array
|
||||
required:
|
||||
- max_infer_iters
|
||||
- model
|
||||
|
|
@ -88,6 +84,27 @@ components:
|
|||
required:
|
||||
- step
|
||||
type: object
|
||||
AgentTool:
|
||||
oneOf:
|
||||
- type: string
|
||||
- additionalProperties: false
|
||||
properties:
|
||||
args:
|
||||
additionalProperties:
|
||||
oneOf:
|
||||
- type: 'null'
|
||||
- type: boolean
|
||||
- type: number
|
||||
- type: string
|
||||
- type: array
|
||||
- type: object
|
||||
type: object
|
||||
name:
|
||||
type: string
|
||||
required:
|
||||
- name
|
||||
- args
|
||||
type: object
|
||||
AgentTurnResponseEvent:
|
||||
additionalProperties: false
|
||||
properties:
|
||||
|
|
@ -611,6 +628,10 @@ components:
|
|||
type: string
|
||||
stream:
|
||||
type: boolean
|
||||
tools:
|
||||
items:
|
||||
$ref: '#/components/schemas/AgentTool'
|
||||
type: array
|
||||
required:
|
||||
- agent_id
|
||||
- session_id
|
||||
|
|
@ -4726,6 +4747,8 @@ tags:
|
|||
- description: <SchemaDefinition schemaRef="#/components/schemas/AgentStepResponse"
|
||||
/>
|
||||
name: AgentStepResponse
|
||||
- description: <SchemaDefinition schemaRef="#/components/schemas/AgentTool" />
|
||||
name: AgentTool
|
||||
- description: 'Streamed agent execution response.
|
||||
|
||||
|
||||
|
|
@ -5257,6 +5280,7 @@ x-tagGroups:
|
|||
- AgentCreateResponse
|
||||
- AgentSessionCreateResponse
|
||||
- AgentStepResponse
|
||||
- AgentTool
|
||||
- AgentTurnResponseEvent
|
||||
- AgentTurnResponseStepCompletePayload
|
||||
- AgentTurnResponseStepProgressPayload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue