Return key-value pairs given the text input to the chain.
(self, **kwargs)
| 25 | |
| 26 | @abstractmethod |
| 27 | def load_conversation(self, **kwargs) -> ChatMessageHistory: |
| 28 | """Return key-value pairs given the text input to the chain.""" |
| 29 | |
| 30 | @abstractmethod |
| 31 | def save_memory(self, key: str, value: Any) -> None: |
no outgoing calls
no test coverage detected