| 185 | chat = FakeChat() |
| 186 | |
| 187 | class FakeOpenAIModule: |
| 188 | @staticmethod |
| 189 | def OpenAI(**_kwargs): |
| 190 | return FakeClient() |
| 191 | |
| 192 | monkeypatch.setitem(sys.modules, "openai", FakeOpenAIModule) |
| 193 | monkeypatch.delenv("OPENAI_REASONING_EFFORT", raising=False) |
nothing calls this directly
no outgoing calls
no test coverage detected