(**kwargs)
| 173 | class FakeCompletions: |
| 174 | @staticmethod |
| 175 | def create(**kwargs): |
| 176 | calls.append(dict(kwargs)) |
| 177 | if kwargs.get("reasoning_effort") == "max": |
| 178 | raise ValueError("unsupported parameter: reasoning_effort") |
| 179 | return FakeResponse() |
| 180 | |
| 181 | class FakeChat: |
| 182 | completions = FakeCompletions() |
no test coverage detected