Skip to content

Commit 47c1aa6

Browse files
committed
merge
1 parent 7dbd341 commit 47c1aa6

5 files changed

Lines changed: 4 additions & 196 deletions

File tree

development/RUNNING_EVALUATIONS.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

eval_protocol/benchmarks/suites/test_evaluation.py

Lines changed: 0 additions & 112 deletions
This file was deleted.

eval_protocol/common_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def load_jsonl(file_path: str) -> List[Dict[str, Any]]:
3333
row_id_index = stripped.find("row_id")
3434
if row_id_index != -1:
3535
row_id = re.search(r'"row_id": (.*),', stripped[row_id_index:])
36-
raise ValueError(f"{e.msg} at line {line_number}: {stripped} ({row_id})")
36+
raise ValueError(f"{e.msg} at line {line_number}: {stripped} ({row_id})") from e
3737
raise e
3838
else:
3939
with open(file_path, "r", encoding="utf-8") as f:
@@ -50,6 +50,6 @@ def load_jsonl(file_path: str) -> List[Dict[str, Any]]:
5050
row_id_index = line.find("row_id")
5151
if row_id_index != -1:
5252
row_id = re.search(r'"row_id": (.*),', line[row_id_index:])
53-
raise ValueError(f"{e.msg} at line {line_number}: {line} ({row_id})")
53+
raise ValueError(f"{e.msg} at line {line_number}: {line} ({row_id})") from e
5454
raise e
5555
return data

eval_protocol/pytest/default_mcp_gym_rollout_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ async def default_mcp_gym_rollout_processor(
213213
"""
214214
if config.server_script_path is None:
215215
raise ValueError("server_script_path is required for default_mcp_gym_rollout_processor")
216-
server = MCPServerManager(config.server_script_path, port=9701)
216+
server = MCPServerManager(config.server_script_path, port=9700)
217217

218218
try:
219219
server.start()

eval_protocol/utils/logs_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def __init__(
232232
os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), "vite-app", "dist")
233233
),
234234
host: str = "localhost",
235-
port: Optional[int] = 8001,
235+
port: Optional[int] = 8000,
236236
index_file: str = "index.html",
237237
):
238238
# Initialize WebSocket manager

0 commit comments

Comments
 (0)