We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91f2378 + f4527eb commit 712a37dCopy full SHA for 712a37d
eval_protocol/pytest/remote_rollout_processor.py
@@ -64,6 +64,10 @@ def __init__(
64
self._model_base_url = model_base_url
65
if os.getenv("EP_REMOTE_ROLLOUT_PROCESSOR_BASE_URL"):
66
self._remote_base_url = os.getenv("EP_REMOTE_ROLLOUT_PROCESSOR_BASE_URL")
67
+ self._model_base_url = model_base_url
68
+ _ep_model_base_url = os.getenv("EP_MODEL_BASE_URL")
69
+ if _ep_model_base_url:
70
+ self._model_base_url = _ep_model_base_url
71
self._poll_interval = poll_interval
72
self._timeout_seconds = timeout_seconds
73
self._output_data_loader = output_data_loader or _default_output_data_loader
0 commit comments