Skip to content

Commit a3f9ca1

Browse files
committed
clean
1 parent b5140eb commit a3f9ca1

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
@@ -17,7 +17,7 @@
1717
policy = ep.FireworksPolicy(model_id="accounts/fireworks/models/qwen3-235b-a22b")
1818
1919
# Create environments with evaluation_rows configuration
20-
envs = await await ep.make("http://localhost:8000/mcp", evaluation_rows=evaluation_rows)
20+
envs = await ep.make("http://localhost:8000/mcp", evaluation_rows=evaluation_rows)
2121
2222
# Execute tool-calling rollouts
2323
evaluation_rows = await ep.rollout(envs, policy=policy, steps=512)
@@ -92,13 +92,13 @@ async def make(
9292
9393
Example:
9494
# EvaluationRow approach (preferred)
95-
envs = await await ep.make("http://localhost:8000/mcp", evaluation_rows=evaluation_rows)
95+
envs = await ep.make("http://localhost:8000/mcp", evaluation_rows=evaluation_rows)
9696
9797
# Dataset approach (backward compatibility)
98-
envs = await await ep.make("http://localhost:8000/mcp", dataset=dataset)
98+
envs = await ep.make("http://localhost:8000/mcp", dataset=dataset)
9999
100100
# Legacy approach (backward compatibility)
101-
envs = await await ep.make("http://localhost:8000/mcp", n=10, seeds=seeds)
101+
envs = await ep.make("http://localhost:8000/mcp", n=10, seeds=seeds)
102102
"""
103103
# Parse environment specification - make sure URL format is correct
104104
base_url = env_spec

0 commit comments

Comments
 (0)