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 TvisitTextContent(String textContent)The contents of the developer message. abstract TvisitArrayOfContentParts(List<ChatCompletionContentPartText> arrayOfContentParts)An array of content parts with a defined type. Tunknown(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
textis supported.
-
-
-
-