Optional
idOptional. The id of the function call this response is for. Populated by the client to match the corresponding function call id
.
Optional
nameRequired. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name].
Optional
responseRequired. The function response in JSON object format. Use "output" key to specify function output and "error" key to specify error details (if any). If "output" and "error" keys are not specified, then whole "response" is treated as function output.
Optional
schedulingSpecifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
Optional
willSignals that function call continues, and more responses will be returned, turning the function call into a generator. Is only applicable to NON_BLOCKING function calls (see FunctionDeclaration.behavior for details), ignored otherwise. If false, the default, future responses will not be considered. Is only applicable to NON_BLOCKING function calls, is ignored otherwise. If set to false, future responses will not be considered. It is allowed to return empty response
with will_continue=False
to signal that the function call is finished.
A function response.