Class: Retab::WorkflowEvalRunResults
- Inherits:
-
Object
- Object
- Retab::WorkflowEvalRunResults
- Defined in:
- lib/retab/workflow_eval_run_results.rb
Instance Method Summary collapse
-
#get(result_id:, request_options: {}) ⇒ Retab::WorkflowEvalResult
Get Workflow Eval Result.
-
#initialize(client) ⇒ WorkflowEvalRunResults
constructor
A new instance of WorkflowEvalRunResults.
-
#list(run_id:, before: nil, after: nil, limit: 20, order: "desc", request_options: {}) ⇒ Retab::PaginatedList<Retab::WorkflowEvalResult>
List Workflow Eval Results.
Constructor Details
#initialize(client) ⇒ WorkflowEvalRunResults
Returns a new instance of WorkflowEvalRunResults.
9 10 11 |
# File 'lib/retab/workflow_eval_run_results.rb', line 9 def initialize(client) @client = client end |
Instance Method Details
#get(result_id:, request_options: {}) ⇒ Retab::WorkflowEvalResult
Get Workflow Eval Result
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/retab/workflow_eval_run_results.rb', line 65 def get( result_id:, request_options: {} ) response = @client.request( method: :get, path: "/v1/workflows/evals/results/#{Retab::Util.encode_path(result_id)}", auth: true, request_options: ) result = Retab::WorkflowEvalResult.new(response.body) result.last_response = Retab::Types::ApiResponse.new( http_status: response.code.to_i, http_headers: response.each_header.to_h, request_id: response["x-request-id"] ) result end |
#list(run_id:, before: nil, after: nil, limit: 20, order: "desc", request_options: {}) ⇒ Retab::PaginatedList<Retab::WorkflowEvalResult>
List Workflow Eval Results
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/retab/workflow_eval_run_results.rb', line 21 def list( run_id:, before: nil, after: nil, limit: 20, order: "desc", request_options: {} ) params = { "run_id" => run_id, "before" => before, "after" => after, "limit" => limit, "order" => order }.compact response = @client.request( method: :get, path: "/v1/workflows/evals/results", auth: true, params: params, request_options: ) fetch_next = -> (cursor) { list( run_id: run_id, before: before, after: cursor, limit: limit, order: order, request_options: ) } Retab::PaginatedList.from_response( response, model: Retab::WorkflowEvalResult, filters: {run_id: run_id, before: before, limit: limit, order: order}, fetch_next: fetch_next ) end |