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 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
You can’t perform that action at this time.
0 commit comments