Class FunctionResponse.Builder

java.lang.Object
com.google.genai.types.FunctionResponse.Builder
Enclosing class:
FunctionResponse

public abstract static class FunctionResponse.Builder extends Object
Builder for FunctionResponse.
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • willContinue

      public abstract FunctionResponse.Builder willContinue(boolean willContinue)
      Setter for willContinue.

      willContinue: Optional. 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, 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. This may still trigger the model generation. To avoid triggering the generation and finish the function call, additionally set `scheduling` to `SILENT`. This field is not supported in Vertex AI.

    • clearWillContinue

      @CanIgnoreReturnValue public FunctionResponse.Builder clearWillContinue()
      Clears the value of willContinue field.
    • scheduling

      public abstract FunctionResponse.Builder scheduling(FunctionResponseScheduling scheduling)
      Setter for scheduling.

      scheduling: Optional. Specifies how the response should be scheduled in the conversation. Only applicable to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.

    • clearScheduling

      @CanIgnoreReturnValue public FunctionResponse.Builder clearScheduling()
      Clears the value of scheduling field.
    • scheduling

      @CanIgnoreReturnValue public FunctionResponse.Builder scheduling(FunctionResponseScheduling.Known knownType)
      Setter for scheduling given a known enum.

      scheduling: Optional. 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(String scheduling)
      Setter for scheduling given a string.

      scheduling: Optional. 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

      public abstract FunctionResponse.Builder parts(List<FunctionResponsePart> parts)
      Setter for parts.

      parts: Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.

    • parts

      @CanIgnoreReturnValue public FunctionResponse.Builder parts(FunctionResponsePart... parts)
      Setter for parts.

      parts: Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.

    • parts

      @CanIgnoreReturnValue public FunctionResponse.Builder parts(FunctionResponsePart.Builder... partsBuilders)
      Setter for parts builder.

      parts: Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types.

    • clearParts

      @CanIgnoreReturnValue public FunctionResponse.Builder clearParts()
      Clears the value of parts field.
    • id

      public abstract FunctionResponse.Builder id(String 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`.

    • clearId

      @CanIgnoreReturnValue public FunctionResponse.Builder clearId()
      Clears the value of id field.
    • name

      public abstract FunctionResponse.Builder name(String name)
      Setter for name.

      name: Required. The name of the function to call. Matches FunctionDeclaration.name and FunctionCall.name.

    • clearName

      @CanIgnoreReturnValue public FunctionResponse.Builder clearName()
      Clears the value of name field.
    • response

      public abstract FunctionResponse.Builder response(Map<String,Object> 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.

    • clearResponse

      @CanIgnoreReturnValue public FunctionResponse.Builder clearResponse()
      Clears the value of response field.
    • build

      public abstract FunctionResponse build()