(self, tmp_path)
| 14 | |
| 15 | class TestBuildQueryAgent: |
| 16 | def test_agent_name(self, tmp_path): |
| 17 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
| 18 | assert agent.name == "wiki-query" |
| 19 | |
| 20 | def test_agent_has_three_tools(self, tmp_path): |
| 21 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
nothing calls this directly
no test coverage detected