Skip to content

Commit e6ebfd8

Browse files
committed
use local expargs everywhere
1 parent b3df564 commit e6ebfd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/agentlab/agents/most_basic_agent/most_basic_agent.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import bgym
66

77
from agentlab.agents.agent_args import AgentArgs
8-
from agentlab.llm.chat_api import make_system_message, make_user_message
8+
from agentlab.experiments.loop import ExpArgs
99
from agentlab.llm.llm_configs import CHAT_MODEL_ARGS_DICT
1010
from agentlab.llm.llm_utils import (
1111
Discussion,
@@ -133,7 +133,7 @@ def parser(response: str) -> tuple[dict, bool, str]:
133133

134134
# example for 2 experiments testing chain of thoughts on a miniwob task
135135
exp_args = [
136-
bgym.ExpArgs(
136+
ExpArgs(
137137
agent_args=MostBasicAgentArgs(
138138
temperature=0.1,
139139
use_chain_of_thought=True,
@@ -142,7 +142,7 @@ def parser(response: str) -> tuple[dict, bool, str]:
142142
env_args=env_args,
143143
logging_level=logging.INFO,
144144
),
145-
bgym.ExpArgs(
145+
ExpArgs(
146146
agent_args=MostBasicAgentArgs(
147147
temperature=0.1,
148148
use_chain_of_thought=False,

0 commit comments

Comments
 (0)