Class RunListResponse.DataSource.Responses.Source
-
- All Implemented Interfaces:
public final class RunListResponse.DataSource.Responses.SourceDetermines what populates the
itemnamespace in this run's data source.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceRunListResponse.DataSource.Responses.Source.VisitorAn interface that defines how to map each variant of Source to a value of type T.
public final classRunListResponse.DataSource.Responses.Source.FileContentpublic final classRunListResponse.DataSource.Responses.Source.FileIdpublic final classRunListResponse.DataSource.Responses.Source.InnerResponsesA EvalResponsesSource object describing a run data source configuration.
-
Method Summary
-
-
Method Detail
-
fileContent
final Optional<RunListResponse.DataSource.Responses.Source.FileContent> fileContent()
-
fileId
final Optional<RunListResponse.DataSource.Responses.Source.FileId> fileId()
-
responses
final Optional<RunListResponse.DataSource.Responses.Source.InnerResponses> responses()
A EvalResponsesSource object describing a run data source configuration.
-
isFileContent
final Boolean isFileContent()
-
isResponses
final Boolean isResponses()
-
asFileContent
final RunListResponse.DataSource.Responses.Source.FileContent asFileContent()
-
asFileId
final RunListResponse.DataSource.Responses.Source.FileId asFileId()
-
asResponses
final RunListResponse.DataSource.Responses.Source.InnerResponses asResponses()
A EvalResponsesSource object describing a run data source configuration.
-
accept
final <T extends Any> T accept(RunListResponse.DataSource.Responses.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 RunListResponse.DataSource.Responses.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 RunListResponse.DataSource.Responses.Source ofFileContent(RunListResponse.DataSource.Responses.Source.FileContent fileContent)
-
ofFileId
final static RunListResponse.DataSource.Responses.Source ofFileId(RunListResponse.DataSource.Responses.Source.FileId fileId)
-
ofResponses
final static RunListResponse.DataSource.Responses.Source ofResponses(RunListResponse.DataSource.Responses.Source.InnerResponses responses)
A EvalResponsesSource object describing a run data source configuration.
-
-
-
-