Update ExtendLibraryFlow.py
Browse files- ExtendLibraryFlow.py +3 -0
ExtendLibraryFlow.py
CHANGED
@@ -8,6 +8,9 @@ class ExtendLibraryFlow(AbstractBossFlow):
|
|
8 |
# ~~~ sets the input_data in the flow_state dict ~~~
|
9 |
self._state_update_dict(update_data=input_data)
|
10 |
|
|
|
|
|
|
|
11 |
max_rounds = self.flow_config.get("max_rounds", 1)
|
12 |
if max_rounds is None:
|
13 |
log.info(f"Running {self.flow_config['name']} without `max_rounds` until the early exit condition is met.")
|
|
|
8 |
# ~~~ sets the input_data in the flow_state dict ~~~
|
9 |
self._state_update_dict(update_data=input_data)
|
10 |
|
11 |
+
# ~~~ set the memory file to the flow state ~~~
|
12 |
+
self._state_update_dict(update_data={"memory_files": self.memory_files})
|
13 |
+
|
14 |
max_rounds = self.flow_config.get("max_rounds", 1)
|
15 |
if max_rounds is None:
|
16 |
log.info(f"Running {self.flow_config['name']} without `max_rounds` until the early exit condition is met.")
|