Class ChatCompletionContentPartText
-
- All Implemented Interfaces:
public final class ChatCompletionContentPartText
Learn about text inputs.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ChatCompletionContentPartText.Builder
A builder for ChatCompletionContentPartText.
-
Method Summary
Modifier and Type Method Description final String
text()
The text content. final JsonValue
_type()
The type of the content part. final JsonField<String>
_text()
Returns the raw JSON value of text. final Map<String, JsonValue>
_additionalProperties()
final ChatCompletionContentPartText
validate()
final ChatCompletionContentPartText.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ChatCompletionContentPartText.Builder
builder()
Returns a mutable builder for constructing an instance of ChatCompletionContentPartText. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the content part.
Expected to always return the following:
JsonValue.from("text")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_text
final JsonField<String> _text()
Returns the raw JSON value of text.
Unlike text, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ChatCompletionContentPartText validate()
-
toBuilder
final ChatCompletionContentPartText.Builder toBuilder()
-
builder
final static ChatCompletionContentPartText.Builder builder()
Returns a mutable builder for constructing an instance of ChatCompletionContentPartText.
The following fields are required:
.text()
-
-
-
-