Package com.openai.models.conversations
Class TopLogProb
-
- All Implemented Interfaces:
public final class TopLogProb
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
TopLogProb.Builder
A builder for TopLogProb.
-
Method Summary
Modifier and Type Method Description final String
token()
final List<Long>
bytes()
final Double
logprob()
final JsonField<String>
_token()
Returns the raw JSON value of token. final JsonField<List<Long>>
_bytes()
Returns the raw JSON value of bytes. final JsonField<Double>
_logprob()
Returns the raw JSON value of logprob. final Map<String, JsonValue>
_additionalProperties()
final TopLogProb.Builder
toBuilder()
final TopLogProb
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static TopLogProb.Builder
builder()
Returns a mutable builder for constructing an instance of TopLogProb. -
-
Method Detail
-
_token
final JsonField<String> _token()
Returns the raw JSON value of token.
Unlike token, this method doesn't throw if the JSON field has an unexpected type.
-
_bytes
final JsonField<List<Long>> _bytes()
Returns the raw JSON value of bytes.
Unlike bytes, this method doesn't throw if the JSON field has an unexpected type.
-
_logprob
final JsonField<Double> _logprob()
Returns the raw JSON value of logprob.
Unlike logprob, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final TopLogProb.Builder toBuilder()
-
validate
final TopLogProb validate()
-
builder
final static TopLogProb.Builder builder()
Returns a mutable builder for constructing an instance of TopLogProb.
The following fields are required:
.token() .bytes() .logprob()
-
-
-
-