Save the provided data object with the representation for the current [`~pipelines.PipelineDataFormat`]. Args: data (`dict` or list of `dict`): The data to store.
(self, data: dict | list[dict])
| 433 | |
| 434 | @abstractmethod |
| 435 | def save(self, data: dict | list[dict]): |
| 436 | """ |
| 437 | Save the provided data object with the representation for the current [`~pipelines.PipelineDataFormat`]. |
| 438 | |
| 439 | Args: |
| 440 | data (`dict` or list of `dict`): The data to store. |
| 441 | """ |
| 442 | raise NotImplementedError() |
| 443 | |
| 444 | def save_binary(self, data: dict | list[dict]) -> str: |
| 445 | """ |
no outgoing calls