Skip to content

Commit 2d4bfc5

Browse files
committed
update comments
1 parent 8d0a57d commit 2d4bfc5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eval_protocol/mcp_env.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)