Package com.google.genai.types
Class TuningExample.Builder
-
- All Implemented Interfaces:
public abstract class TuningExample.BuilderBuilder for TuningExample.
-
-
Constructor Summary
Constructors Constructor Description TuningExample.Builder()
-
Method Summary
Modifier and Type Method Description abstract TuningExample.Builderoutput(String output)Setter for output. TuningExample.BuilderclearOutput()Clears the value of output field. abstract TuningExample.BuildertextInput(String textInput)Setter for textInput. TuningExample.BuilderclearTextInput()Clears the value of textInput field. abstract TuningExamplebuild()-
-
Method Detail
-
output
abstract TuningExample.Builder output(String output)
Setter for output.
output: Required. The expected model output.
-
clearOutput
@CanIgnoreReturnValue() TuningExample.Builder clearOutput()
Clears the value of output field.
-
textInput
abstract TuningExample.Builder textInput(String textInput)
Setter for textInput.
textInput: Optional. Text model input.
-
clearTextInput
@CanIgnoreReturnValue() TuningExample.Builder clearTextInput()
Clears the value of textInput field.
-
build
abstract TuningExample build()
-
-
-
-