import os import hydra from aiflows.backends.api_info import ApiInfo from aiflows.messages import InputMessage from aiflows.utils.general_helpers import read_yaml_file from aiflows import logging from aiflows.flow_cache import CACHING_PARAMETERS, clear_cache CACHING_PARAMETERS.do_caching = False # Set to True in order to disable caching logging.set_verbosity_debug() logging.auto_set_dir() dependencies = [ {"url": "Tachi67/MemoryWritingFlowModule", "revision": "main"}, ] from aiflows import flow_verse flow_verse.sync_dependencies(dependencies) if __name__ == "__main__": current_dir = os.getcwd() cfg_path = os.path.join(current_dir, "MemoryWritingAtomicFlow.yaml") cfg = read_yaml_file(cfg_path) MemWriteFlow = hydra.utils.instantiate(cfg, _recursive_=False, _convert_="partial") logs_file_location = os.path.join(current_dir, "logs.txt") with open(logs_file_location, 'w') as file: pass input_data = { "summary": "mama~~~~~~~~ just killed a man", "memory_files": { "logs": logs_file_location } } input_message = InputMessage.build( data_dict=input_data, src_flow="Launcher", dst_flow=MemWriteFlow.name ) # ~~~ calling the flow ~~~ output_message = MemWriteFlow(input_message)