Skip to content

Commit a1c30d1

Browse files
committed
move conf to the tapeagent dir
1 parent c59e60b commit a1c30d1

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TapeAgentArgs(AgentArgs):
1818
agent_name: str
1919

2020
def make_agent(self) -> bgym.Agent:
21-
with hydra.initialize(config_path="../../../conf"):
21+
with hydra.initialize(config_path="conf"):
2222
config = hydra.compose(config_name=self.agent_name)
2323
agent: Agent = hydra.utils.instantiate(config)
2424
return TapeAgent(agent=agent, tape=Tape(steps=[]))

conf/gaia_agent.yaml renamed to src/agentlab/agents/tapeagent/conf/gaia_agent.yaml

File renamed without changes.

conf/llm/gpt4o.yaml renamed to src/agentlab/agents/tapeagent/conf/llm/gpt4o.yaml

File renamed without changes.

tests/agents/test_gaia_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from agentlab.agents.tapeagent import TapeAgent, TapeAgentArgs
1+
from agentlab.agents.tapeagent.agent import TapeAgent, TapeAgentArgs
22
from agentlab.benchmarks.gaia import GaiaBenchmark
33

44

0 commit comments

Comments
 (0)