Package com.openai.models.responses
Class ResponseContentPartAddedEvent.Part.ReasoningText.Builder
-
- All Implemented Interfaces:
public final class ResponseContentPartAddedEvent.Part.ReasoningText.Builder
A builder for ReasoningText.
-
-
Method Summary
-
-
Method Detail
-
text
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder text(String text)
The reasoning text from the model.
-
text
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder text(JsonField<String> text)
Sets Builder.text to an arbitrary JSON value.
You should usually call Builder.text with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("reasoning_text")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseContentPartAddedEvent.Part.ReasoningText.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseContentPartAddedEvent.Part.ReasoningText build()
Returns an immutable instance of ReasoningText.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.text()
-
-
-
-