mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
Implement the 'max_tool_calls' parameter for the Responses API
Test max_tool_calls with builtin and mcp tools Update input prompt for more consistent tool calling Resolve merge conflicts Update integration test Handle review comments
This commit is contained in:
parent
8f4c431370
commit
835e6c60ad
9 changed files with 240 additions and 2 deletions
|
|
@ -6882,6 +6882,11 @@ components:
|
|||
type: string
|
||||
description: >-
|
||||
(Optional) System message inserted into the model's context
|
||||
max_tool_calls:
|
||||
type: integer
|
||||
description: >-
|
||||
(Optional) Max number of total calls to built-in tools that can be processed
|
||||
in a response
|
||||
input:
|
||||
type: array
|
||||
items:
|
||||
|
|
@ -7240,6 +7245,11 @@ components:
|
|||
(Optional) Additional fields to include in the response.
|
||||
max_infer_iters:
|
||||
type: integer
|
||||
max_tool_calls:
|
||||
type: integer
|
||||
description: >-
|
||||
(Optional) Max number of total calls to built-in tools that can be processed
|
||||
in a response.
|
||||
additionalProperties: false
|
||||
required:
|
||||
- input
|
||||
|
|
@ -7321,6 +7331,11 @@ components:
|
|||
type: string
|
||||
description: >-
|
||||
(Optional) System message inserted into the model's context
|
||||
max_tool_calls:
|
||||
type: integer
|
||||
description: >-
|
||||
(Optional) Max number of total calls to built-in tools that can be processed
|
||||
in a response
|
||||
additionalProperties: false
|
||||
required:
|
||||
- created_at
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue