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 TvisitImageFileDeltaBlock(ImageFileDeltaBlock imageFileDeltaBlock)References an image File in the content of a message. abstract TvisitTextDeltaBlock(TextDeltaBlock textDeltaBlock)The text content that is part of a message. abstract TvisitRefusalDeltaBlock(RefusalDeltaBlock refusalDeltaBlock)The refusal content that is part of a message. abstract TvisitImageUrlDeltaBlock(ImageUrlDeltaBlock imageUrlDeltaBlock)References an image URL in the content of a message. Tunknown(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.
-
-
-
-