(self)
| 9 | """Verify that reasoning_effort is passed through without hardcoded defaults.""" |
| 10 | |
| 11 | def _make_client(self): |
| 12 | config = LLMConfig(api_key="test-key") |
| 13 | return LLMClient(config) |
| 14 | |
| 15 | @patch("harness.llms.client.litellm") |
| 16 | def test_no_default_reasoning_effort(self, mock_litellm): |
no test coverage detected