Class FunctionResponse.Builder
- Enclosing class:
- FunctionResponse
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract FunctionResponse
build()
abstract FunctionResponse.Builder
Setter for id.abstract FunctionResponse.Builder
Setter for name.parts
(FunctionResponsePart... parts) Setter for parts.parts
(FunctionResponsePart.Builder... partsBuilders) Setter for parts builder.abstract FunctionResponse.Builder
parts
(List<FunctionResponsePart> parts) Setter for parts.abstract FunctionResponse.Builder
Setter for response.abstract FunctionResponse.Builder
scheduling
(FunctionResponseScheduling scheduling) Setter for scheduling.scheduling
(FunctionResponseScheduling.Known knownType) Setter for scheduling given a known enum.scheduling
(String scheduling) Setter for scheduling given a string.abstract FunctionResponse.Builder
willContinue
(boolean willContinue) Setter for willContinue.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
willContinue
Setter for willContinue.willContinue: Signals 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.
-
scheduling
Setter for scheduling.scheduling: Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
-
scheduling
@CanIgnoreReturnValue public FunctionResponse.Builder scheduling(FunctionResponseScheduling.Known knownType) Setter for scheduling given a known enum.scheduling: Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
-
scheduling
Setter for scheduling given a string.scheduling: Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
-
parts
Setter for parts.parts: List of parts that constitute a function response. Each part may have a different IANA MIME type.
-
parts
Setter for parts.parts: List of parts that constitute a function response. Each part may have a different IANA MIME type.
-
parts
Setter for parts builder.parts: List of parts that constitute a function response. Each part may have a different IANA MIME type.
-
id
Setter for id.id: Optional. The id of the function call this response is for. Populated by the client to match the corresponding function call `id`.
-
name
Setter for name.name: Required. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name].
-
response
Setter for response.response: Required. 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.
-
build
-