Package com.openai.models
Interface MessageContentDelta.Visitor
-
- All Implemented Interfaces:
public interface MessageContentDelta.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitImageFile(ImageFileDeltaBlock imageFile)
References an image File in the content of a message. abstract T
visitText(TextDeltaBlock text)
The text content that is part of a message. abstract T
visitRefusal(RefusalDeltaBlock refusal)
The refusal content that is part of a message. abstract T
visitImageUrl(ImageUrlDeltaBlock imageUrl)
References an image URL in the content of a message. T
unknown(JsonValue json)
-
-
Method Detail
-
visitImageFile
abstract T visitImageFile(ImageFileDeltaBlock imageFile)
References an image File in the content of a message.
-
visitText
abstract T visitText(TextDeltaBlock text)
The text content that is part of a message.
-
visitRefusal
abstract T visitRefusal(RefusalDeltaBlock refusal)
The refusal content that is part of a message.
-
visitImageUrl
abstract T visitImageUrl(ImageUrlDeltaBlock imageUrl)
References an image URL in the content of a message.
-
-
-
-