(tmp_path)
| 59 | |
| 60 | @pytest.fixture |
| 61 | def acp_agent(tmp_path): |
| 62 | config = Config( |
| 63 | llm=LLMConfig(api_key="test-key"), |
| 64 | agent=AgentConfig(max_steps=3, workspace_dir=str(tmp_path)), |
| 65 | tools=ToolsConfig(), |
| 66 | ) |
| 67 | conn = DummyConn() |
| 68 | agent = MiniMaxACPAgent(conn, config, DummyLLM(), [EchoTool()], "system") |
| 69 | return agent, conn |
| 70 | |
| 71 | |
| 72 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected