Package com.openai.models
Interface ChatCompletionDeveloperMessageParam.Content.Visitor
-
- All Implemented Interfaces:
public interface ChatCompletionDeveloperMessageParam.Content.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitTextContent(String textContent)
The contents of the developer message. abstract T
visitArrayOfContentParts(List<ChatCompletionContentPartText> arrayOfContentParts)
An array of content parts with a defined type. T
unknown(JsonValue json)
-
-
Method Detail
-
visitTextContent
abstract T visitTextContent(String textContent)
The contents of the developer message.
-
visitArrayOfContentParts
abstract T visitArrayOfContentParts(List<ChatCompletionContentPartText> arrayOfContentParts)
An array of content parts with a defined type. For developer messages, only type
text
is supported.
-
-
-
-