class

OpenAI::EvalRunList

Inherits JSON::Serializable < Reference < Object

An object representing a list of runs for an evaluation.

Constructors

new(object : EvalRunListObject = EvalRunListObject::List, data : Array(EvalRun) = [] of EvalRun, first_id : String = "", last_id : String = "", has_more : Bool = false)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

data

An array of eval run objects.

Source
data=(data : Array(EvalRun))

An array of eval run objects.

Source
first_id

The identifier of the first eval run in the data array.

Source
first_id=(first_id : String)

The identifier of the first eval run in the data array.

Source
has_more

Indicates whether there are more evals available.

Source
has_more=(has_more : Bool)

Indicates whether there are more evals available.

Source
last_id

The identifier of the last eval run in the data array.

Source
last_id=(last_id : String)

The identifier of the last eval run in the data array.

Source
object

The type of this object. It is always set to "list".

Source
object=(object : EvalRunListObject)

The type of this object. It is always set to "list".

Source