Class EvalListParams
-
- All Implemented Interfaces:
-
com.openai.core.Params
public final class EvalListParams implements Params
List evaluations for a project.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
EvalListParams.Builder
A builder for EvalListParams.
public final class
EvalListParams.Order
Sort order for evals by timestamp. Use
asc
for ascending order ordesc
for descending order.public final class
EvalListParams.OrderBy
Evals can be ordered by creation time or last updated time. Use
created_at
for creation time orupdated_at
for last updated time.
-
Method Summary
Modifier and Type Method Description final Optional<String>
after()
Identifier for the last eval from the previous pagination request. final Optional<Long>
limit()
Number of evals to retrieve. final Optional<EvalListParams.Order>
order()
Sort order for evals by timestamp. final Optional<EvalListParams.OrderBy>
orderBy()
Evals can be ordered by creation time or last updated time. final Headers
_additionalHeaders()
final QueryParams
_additionalQueryParams()
final EvalListParams.Builder
toBuilder()
Headers
_headers()
The full set of headers in the parameters, including both fixed and additional headers. QueryParams
_queryParams()
The full set of query params in the parameters, including both fixed and additional query params. Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static EvalListParams
none()
final static EvalListParams.Builder
builder()
Returns a mutable builder for constructing an instance of EvalListParams. -
-
Method Detail
-
after
final Optional<String> after()
Identifier for the last eval from the previous pagination request.
-
order
final Optional<EvalListParams.Order> order()
Sort order for evals by timestamp. Use
asc
for ascending order ordesc
for descending order.
-
orderBy
final Optional<EvalListParams.OrderBy> orderBy()
Evals can be ordered by creation time or last updated time. Use
created_at
for creation time orupdated_at
for last updated time.
-
_additionalHeaders
final Headers _additionalHeaders()
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
-
toBuilder
final EvalListParams.Builder toBuilder()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
none
final static EvalListParams none()
-
builder
final static EvalListParams.Builder builder()
Returns a mutable builder for constructing an instance of EvalListParams.
-
-
-
-