| 597 | |
| 598 | @dataclass |
| 599 | class HistoryOutput: |
| 600 | output_type: typing.Literal[ |
| 601 | "out_stream", "err_stream", "display_data", "execute_result" |
| 602 | ] |
| 603 | bundle: typing.Dict[str, str | list[str]] |
| 604 | |
| 605 | |
| 606 | class HistoryManager(HistoryAccessor): |
no outgoing calls
searching dependent graphs…