Skip to content

Commit 7f8ab42

Browse files
committed
update
1 parent 9942429 commit 7f8ab42

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

eval_protocol/pytest/github_action_rollout_processor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def __init__(
5050
self.timeout_seconds = timeout_seconds
5151
self.max_find_workflow_retries = max_find_workflow_retries
5252
self.github_token = github_token
53-
self._output_data_loader = default_fireworks_output_data_loader
5453

5554
def _headers(self) -> Dict[str, str]:
5655
headers = {"Accept": "application/vnd.github+json"}
@@ -198,7 +197,7 @@ def _get_run() -> Dict[str, Any]:
198197
row.execution_metadata.rollout_duration_seconds = time.perf_counter() - start_time
199198

200199
def _update_with_trace() -> None:
201-
return update_row_with_remote_trace(row, self._output_data_loader, self.model_base_url)
200+
return update_row_with_remote_trace(row, default_fireworks_output_data_loader, self.model_base_url)
202201

203202
await asyncio.to_thread(_update_with_trace)
204203

eval_protocol/pytest/remote_rollout_processor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def __init__(
5050
self._model_base_url = _ep_model_base_url
5151
self._poll_interval = poll_interval
5252
self._timeout_seconds = timeout_seconds
53-
self._output_data_loader = default_fireworks_output_data_loader
5453
self._tracing_adapter = FireworksTracingAdapter(base_url=self._model_base_url)
5554

5655
def __call__(self, rows: List[EvaluationRow], config: RolloutProcessorConfig) -> List[asyncio.Task[EvaluationRow]]:
@@ -186,7 +185,7 @@ def _get_status() -> Dict[str, Any]:
186185
row.execution_metadata.rollout_duration_seconds = time.perf_counter() - start_time
187186

188187
def _update_with_trace() -> None:
189-
return update_row_with_remote_trace(row, self._output_data_loader, model_base_url)
188+
return update_row_with_remote_trace(row, default_fireworks_output_data_loader, model_base_url)
190189

191190
await asyncio.to_thread(_update_with_trace) # Update row with remote trace in-place
192191
return row

0 commit comments

Comments
 (0)