Return key-value pairs given the text input to the chain.
(
self, key: Union[str, None] = None, default: Optional[Any] = None, **kwargs: Any
)
| 19 | |
| 20 | @abstractmethod |
| 21 | def load_memory( |
| 22 | self, key: Union[str, None] = None, default: Optional[Any] = None, **kwargs: Any |
| 23 | ) -> Any: |
| 24 | """Return key-value pairs given the text input to the chain.""" |
| 25 | |
| 26 | @abstractmethod |
| 27 | def load_conversation(self, **kwargs) -> ChatMessageHistory: |
no outgoing calls
no test coverage detected