(self, tmp_path)
| 170 | """ |
| 171 | |
| 172 | def test_timeout_applied_from_stash(self, tmp_path): |
| 173 | from openkb.config import set_timeout |
| 174 | |
| 175 | set_timeout(1200.0) |
| 176 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
| 177 | assert agent.model_settings.extra_args == {"timeout": 1200.0} |
| 178 | |
| 179 | def test_no_timeout_by_default(self, tmp_path): |
| 180 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
nothing calls this directly
no test coverage detected