(self, tmp_path)
| 34 | assert "pageindex_retrieve" not in agent.instructions |
| 35 | |
| 36 | def test_schema_in_instructions(self, tmp_path): |
| 37 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
| 38 | assert SCHEMA_MD in agent.instructions |
| 39 | |
| 40 | def test_agent_model(self, tmp_path): |
| 41 | agent = build_query_agent(str(tmp_path), "my-model") |
nothing calls this directly
no test coverage detected