(memory_config: Dict)
| 33 | |
| 34 | |
| 35 | def load_memory(memory_config: Dict): |
| 36 | memory_type = memory_config.pop("memory_type", "chat_history") |
| 37 | return memory_registry.build(memory_type, **memory_config) |
| 38 | |
| 39 | |
| 40 | def load_memory_manipulator(memory_manipulator_config: Dict): |
no test coverage detected