Enum Class OpenAiChatCompletionParameters.ResponseFormat
java.lang.Object
java.lang.Enum<OpenAiChatCompletionParameters.ResponseFormat>
com.sap.ai.sdk.foundationmodels.openai.model.OpenAiChatCompletionParameters.ResponseFormat
- All Implemented Interfaces:
Serializable,Comparable<OpenAiChatCompletionParameters.ResponseFormat>,Constable
- Enclosing class:
OpenAiChatCompletionParameters
public static enum OpenAiChatCompletionParameters.ResponseFormat
extends Enum<OpenAiChatCompletionParameters.ResponseFormat>
"response_format": { "type": "json_object" }
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSetting to `json_object` enables JSON mode.Response format is a plain text string. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JSON_OBJECT
Setting to `json_object` enables JSON mode. This guarantees that the message the model generates is valid JSON. -
TEXT
Response format is a plain text string.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-