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