Package com.openai.models.evals.runs
Class CreateEvalJsonlRunDataSource.Source
-
- All Implemented Interfaces:
public final class CreateEvalJsonlRunDataSource.SourceDetermines what populates the
itemnamespace in the data source.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceCreateEvalJsonlRunDataSource.Source.VisitorAn interface that defines how to map each variant of Source to a value of type T.
public final classCreateEvalJsonlRunDataSource.Source.FileContentpublic final classCreateEvalJsonlRunDataSource.Source.FileId
-
Method Summary
-
-
Method Detail
-
fileContent
final Optional<CreateEvalJsonlRunDataSource.Source.FileContent> fileContent()
-
fileId
final Optional<CreateEvalJsonlRunDataSource.Source.FileId> fileId()
-
isFileContent
final Boolean isFileContent()
-
asFileContent
final CreateEvalJsonlRunDataSource.Source.FileContent asFileContent()
-
asFileId
final CreateEvalJsonlRunDataSource.Source.FileId asFileId()
-
accept
final <T extends Any> T accept(CreateEvalJsonlRunDataSource.Source.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.openai.core.JsonValue; import java.util.Optional; Optional<String> result = source.accept(new Source.Visitor<Optional<String>>() { @Override public Optional<String> visitFileContent(FileContent fileContent) { return Optional.of(fileContent.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final CreateEvalJsonlRunDataSource.Source validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofFileContent
final static CreateEvalJsonlRunDataSource.Source ofFileContent(CreateEvalJsonlRunDataSource.Source.FileContent fileContent)
-
ofFileId
final static CreateEvalJsonlRunDataSource.Source ofFileId(CreateEvalJsonlRunDataSource.Source.FileId fileId)
-
-
-
-