File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -278,10 +278,10 @@ def rollout(
278278
279279 Example:
280280 # Live mode
281- tasks = await ep.rollout(envs, policy)
281+ tasks = ep.rollout(envs, policy)
282282
283283 # Create environments automatically
284- tasks = await ep.rollout(
284+ tasks = ep.rollout(
285285 "http://localhost:8000/mcp/",
286286 policy,
287287 evaluation_rows=my_evaluation_rows,
@@ -290,10 +290,10 @@ def rollout(
290290
291291 # Recording mode
292292 os.environ["EP_PLAYBACK_FILE"] = "record.jsonl"
293- tasks = await ep.rollout(envs, policy, openai_format_log_file="sft_data.jsonl")
293+ tasks = ep.rollout(envs, policy, openai_format_log_file="sft_data.jsonl")
294294
295295 # Playback mode (after recording file exists)
296- tasks = await ep.rollout(envs, policy)
296+ tasks = ep.rollout(envs, policy)
297297 """
298298 # Automatically create environments if a base URL is provided
299299 if isinstance (envs , str ):
You can’t perform that action at this time.
0 commit comments