We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8be75 commit 2ef8500Copy full SHA for 2ef8500
tests/agents/test_gaia_agent.py
@@ -0,0 +1,8 @@
1
+from agentlab.agents.tapeagent import TapeAgent, TapeAgentArgs
2
+
3
4
+def test_agent_creation():
5
+ args = TapeAgentArgs(agent_name="gaia_agent")
6
+ agent = args.make_agent()
7
+ assert isinstance(agent, TapeAgent)
8
+ assert agent.agent.name == "gaia_agent"
0 commit comments