Enum FineTuneJob.Model
- java.lang.Object
-
- java.lang.Enum<FineTuneJob.Model>
-
- com.unfbx.chatgpt.entity.fineTune.job.FineTuneJob.Model
-
- All Implemented Interfaces:
Serializable,Comparable<FineTuneJob.Model>
- Enclosing class:
- FineTuneJob
public static enum FineTuneJob.Model extends Enum<FineTuneJob.Model>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BABBAGE_002DAVINCI_002GPT_3_5_TURBO_0613GPT_3_5_TURBO_1106GPT_4_0613
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FineTuneJob.ModelvalueOf(String name)Returns the enum constant of this type with the specified name.static FineTuneJob.Model[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GPT_3_5_TURBO_1106
public static final FineTuneJob.Model GPT_3_5_TURBO_1106
-
GPT_3_5_TURBO_0613
public static final FineTuneJob.Model GPT_3_5_TURBO_0613
-
BABBAGE_002
public static final FineTuneJob.Model BABBAGE_002
-
GPT_4_0613
public static final FineTuneJob.Model GPT_4_0613
-
DAVINCI_002
public static final FineTuneJob.Model DAVINCI_002
-
-
Method Detail
-
values
public static FineTuneJob.Model[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FineTuneJob.Model c : FineTuneJob.Model.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FineTuneJob.Model valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-