Eagerly load the chat sessions into memory. Returns: A list of chat sessions.
(self)
| 16 | """ |
| 17 | |
| 18 | def load(self) -> List[ChatSession]: |
| 19 | """Eagerly load the chat sessions into memory. |
| 20 | |
| 21 | Returns: |
| 22 | A list of chat sessions. |
| 23 | """ |
| 24 | return list(self.lazy_load()) |