io.github.sashirestela.openai.domain.assistant.VectorStoreFile 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.
The newest version!
package io.github.sashirestela.openai.domain.assistant;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
@NoArgsConstructor
@Getter
@ToString
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class VectorStoreFile {
private String id;
private String object;
private Integer usageBytes;
private Integer createdAt;
private String vectorStoreId;
private FileStatus status;
private LastError lastError;
private ChunkingStrategy chunkingStrategy;
}