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
visitImageFileDeltaBlock(ImageFileDeltaBlock imageFileDeltaBlock)
References an image File in the content of a message. abstract T
visitTextDeltaBlock(TextDeltaBlock textDeltaBlock)
The text content that is part of a message. abstract T
visitRefusalDeltaBlock(RefusalDeltaBlock refusalDeltaBlock)
The refusal content that is part of a message. abstract T
visitImageUrlDeltaBlock(ImageUrlDeltaBlock imageUrlDeltaBlock)
References an image URL in the content of a message. T
unknown(JsonValue json)
-
-
Method Detail
-
visitImageFileDeltaBlock
abstract T visitImageFileDeltaBlock(ImageFileDeltaBlock imageFileDeltaBlock)
References an image File in the content of a message.
-
visitTextDeltaBlock
abstract T visitTextDeltaBlock(TextDeltaBlock textDeltaBlock)
The text content that is part of a message.
-
visitRefusalDeltaBlock
abstract T visitRefusalDeltaBlock(RefusalDeltaBlock refusalDeltaBlock)
The refusal content that is part of a message.
-
visitImageUrlDeltaBlock
abstract T visitImageUrlDeltaBlock(ImageUrlDeltaBlock imageUrlDeltaBlock)
References an image URL in the content of a message.
-
-
-
-