(role: str = "user", content: str = "hello")
| 25 | |
| 26 | |
| 27 | def _make_message_dict(role: str = "user", content: str = "hello") -> dict: |
| 28 | return {"role": role, "content": content} |
| 29 | |
| 30 | |
| 31 | def _make_message_obj(role: str = "user", content: str = "hello") -> MagicMock: |
no outgoing calls
no test coverage detected