(self)
| 46 | return self.type == "chat_completion" and self.properties.get("function_call", False) |
| 47 | |
| 48 | def allow_streaming(self): |
| 49 | return self.type == "chat_completion" and self.properties.get("streaming", False) |
| 50 | |
| 51 | @classmethod |
| 52 | def build(cls, row: Dict): |
no test coverage detected