Skip to content

Commit 5b3f469

Browse files
committed
backtracking from moving bgym.benchmarks etc
1 parent 19cdaf9 commit 5b3f469

25 files changed

+16
-35499
lines changed

src/agentlab/agents/agent_args.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import bgym
2-
from bgym import AbstractAgentArgs
3-
4-
from agentlab.experiments.benchmark import Benchmark
2+
from bgym import AbstractAgentArgs, Benchmark
53

64

75
class AgentArgs(AbstractAgentArgs):

src/agentlab/agents/dynamic_prompting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
from warnings import warn
1010

1111
import bgym
12+
from bgym import HighLevelActionSetArgs
1213
from browsergym.core.action.base import AbstractActionSet
1314
from browsergym.utils.obs import flatten_axtree_to_str, flatten_dom_to_str, overlay_som, prune_html
1415

15-
from agentlab.experiments.benchmark import HighLevelActionSetArgs
1616
from agentlab.llm.llm_utils import (
1717
BaseMessage,
1818
ParseError,

src/agentlab/agents/generic_agent/agent_configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"""
44

55
import bgym
6+
from bgym import HighLevelActionSetArgs
67

78
from agentlab.agents import dynamic_prompting as dp
89
from agentlab.experiments import args
9-
from agentlab.experiments.benchmark import HighLevelActionSetArgs
1010
from agentlab.llm.llm_configs import CHAT_MODEL_ARGS_DICT
1111

1212
from .generic_agent import GenericAgentArgs

src/agentlab/agents/generic_agent/generic_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
from warnings import warn
1515

1616
import bgym
17+
from bgym import Benchmark
1718
from browsergym.experiments.agent import Agent, AgentInfo
1819

1920
from agentlab.agents import dynamic_prompting as dp
2021
from agentlab.agents.agent_args import AgentArgs
21-
from agentlab.experiments.benchmark import Benchmark
2222
from agentlab.llm.chat_api import BaseModelArgs
2323
from agentlab.llm.llm_utils import Discussion, ParseError, SystemMessage, retry
2424
from agentlab.llm.tracking import cost_tracker_decorator

src/agentlab/agents/generic_agent/reproducibility_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
from pathlib import Path
2020

2121
import bgym
22+
from bgym import HighLevelActionSetArgs
2223
from browsergym.experiments.agent import AgentInfo
2324
from bs4 import BeautifulSoup
2425

2526
from agentlab.agents.agent_args import AgentArgs
26-
from agentlab.experiments.benchmark import HighLevelActionSetArgs
2727
from agentlab.experiments.loop import ExpArgs, ExpResult, yield_all_exp_results
2828
from agentlab.experiments.study import Study
2929
from agentlab.llm.chat_api import make_assistant_message

src/agentlab/agents/visual_agent/agent_configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import bgym
2+
from bgym import HighLevelActionSetArgs
23

34
import agentlab.agents.dynamic_prompting as dp
4-
from agentlab.experiments.benchmark import HighLevelActionSetArgs
55
from agentlab.llm.llm_configs import CHAT_MODEL_ARGS_DICT
66

77
from .visual_agent import VisualAgentArgs

src/agentlab/agents/visual_agent/visual_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
from dataclasses import asdict, dataclass
1212

1313
import bgym
14+
from bgym import Benchmark
1415
from browsergym.experiments.agent import Agent, AgentInfo
1516

1617
from agentlab.agents import dynamic_prompting as dp
1718
from agentlab.agents.agent_args import AgentArgs
18-
from agentlab.experiments.benchmark import Benchmark
1919
from agentlab.llm.chat_api import BaseModelArgs
2020
from agentlab.llm.llm_utils import Discussion, ParseError, SystemMessage, retry
2121
from agentlab.llm.tracking import cost_tracker_decorator

src/agentlab/experiments/benchmark/__init__.py

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

src/agentlab/experiments/benchmark/base.py

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

0 commit comments

Comments
 (0)