View Source ExOpenAI.Components.EvalResponsesSource (ex_openai.ex v2.0.0-beta2)
A EvalResponsesSource object describing a run data source configuration.
Fields
:created_after- optional -integer() | any():created_before- optional -integer() | any():instructions_search- optional -String.t() | any():metadata- optional -map() | any():model- optional -String.t() | any():reasoning_effort- optional -ExOpenAI.Components.ReasoningEffort.t() | any():temperature- optional -number() | any():tools- optional -[String.t()] | any():top_p- optional -number() | any():type- required -:responses
The type of run data source. Alwaysresponses.
Allowed values:"responses":users- optional -[String.t()] | any()
Summary
Types
@type t() :: %ExOpenAI.Components.EvalResponsesSource{ created_after: (integer() | any()) | nil, created_before: (integer() | any()) | nil, instructions_search: (String.t() | any()) | nil, metadata: (map() | any()) | nil, model: (String.t() | any()) | nil, reasoning_effort: (ExOpenAI.Components.ReasoningEffort.t() | any()) | nil, temperature: (number() | any()) | nil, tools: ([String.t()] | any()) | nil, top_p: (number() | any()) | nil, type: :responses, users: ([String.t()] | any()) | nil }