()
| 17 | |
| 18 | |
| 19 | def _fake_response(): |
| 20 | choice = MagicMock() |
| 21 | choice.message.content = "ok" |
| 22 | choice.finish_reason = "stop" |
| 23 | resp = MagicMock() |
| 24 | resp.choices = [choice] |
| 25 | return resp |
| 26 | |
| 27 | |
| 28 | def test_llm_call_forwards_configured_timeout(): |
no outgoing calls
no test coverage detected