| 328 | |
| 329 | |
| 330 | class ImageQuery(Query): |
| 331 | def __init__(self, prompt: str, **kwargs) -> None: |
| 332 | kwargs["content_type"] = "image" |
| 333 | super().__init__(prompt, **kwargs) |
| 334 | |
| 335 | def __repr__(self) -> str: |
| 336 | return f"<EdgeGPT.ImageQuery: {self.prompt}>" |
| 337 | |
| 338 | |
| 339 | def test_cookie_rotation() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected