io.github.sashirestela.openai.domain.assistant.ThreadMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-openai Show documentation
Show all versions of simple-openai Show documentation
A Java library to use the OpenAI API in the simplest possible way.
package io.github.sashirestela.openai.domain.assistant;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import io.github.sashirestela.openai.common.content.ContentPart;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
import java.util.List;
import java.util.Map;
@NoArgsConstructor
@Getter
@ToString
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class ThreadMessage {
private String id;
private String object;
private Integer createdAt;
private String threadId;
private ThreadMessageStatus status;
private IncompleteDetail incompleteDetails;
private Integer completedAt;
private Integer incompleteAt;
private ThreadMessageRole role;
private List content;
private String assistantId;
private String runId;
private List attachments;
private Map metadata;
public enum ThreadMessageStatus {
@JsonProperty("in_progress")
IN_PROGRESS,
@JsonProperty("incomplete")
INCOMPLETE,
@JsonProperty("completed")
COMPLETED;
}
}