CombinedMemory#
- class langchain.memory.combined.CombinedMemory[source]#
Bases:
BaseMemory
Combining multiple memoriesβ data together.
- param memories: List[BaseMemory] [Required]#
For tracking all the memories that should be accessed.
- async aclear() None #
Async clear memory contents.
- Return type:
None
- async aload_memory_variables(inputs: Dict[str, Any]) Dict[str, Any] #
Async return key-value pairs given the text input to the chain.
- Parameters:
inputs (Dict[str, Any]) β The inputs to the chain.
- Returns:
A dictionary of key-value pairs.
- Return type:
Dict[str, Any]
- async asave_context(inputs: Dict[str, Any], outputs: Dict[str, str]) None #
Async save the context of this chain run to memory.
- Parameters:
inputs (Dict[str, Any]) β The inputs to the chain.
outputs (Dict[str, str]) β The outputs of the chain.
- Return type:
None
- load_memory_variables(inputs: Dict[str, Any]) Dict[str, str] [source]#
Load all vars from sub-memories.
- Parameters:
inputs (Dict[str, Any]) β
- Return type:
Dict[str, str]
- save_context(inputs: Dict[str, Any], outputs: Dict[str, str]) None [source]#
Save context from this session for every memory.
- Parameters:
inputs (Dict[str, Any]) β
outputs (Dict[str, str]) β
- Return type:
None
- property memory_variables: List[str]#
All the memory variables that this instance provides.