com.launchableinc.openai.messages.content.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Basic java objects for the OpenAI GPT APIs
The newest version!
package com.launchableinc.openai.messages.content;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* The text content that is part of a message
*
* https://platform.openai.com/docs/api-reference/messages/object
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Text {
/**
* The data that makes up the text.
*/
String value;
/**
* Text annotations that show additional details
*/
List annotations;
}