| | import os |
| |
|
| | import hydra |
| |
|
| | 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 |
| | |
| |
|
| | logging.set_verbosity_debug() |
| | logging.auto_set_dir() |
| |
|
| | dependencies = [ |
| | {"url": "aiflows/CodeFileEditFlowModule", "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, "CodeFileEditAtomicFlow.yaml") |
| | cfg = read_yaml_file(cfg_path) |
| |
|
| | with open(os.path.join(current_dir, "library.py"), "w") as file: |
| | pass |
| |
|
| | memory_files = {"code_library": os.path.join(current_dir, "library.py")} |
| |
|
| | |
| | CodeFileEditFlow = hydra.utils.instantiate(cfg, _recursive_=False, _convert_="partial") |
| | code = """ |
| | print("Hello World!") |
| | """ |
| | input_data = { |
| | "language_of_code": "Python", |
| | "code": code, |
| | "memory_files": memory_files |
| | } |
| | input_message = InputMessage.build( |
| | data_dict=input_data, |
| | src_flow="Launcher", |
| | dst_flow=CodeFileEditFlow.name |
| | ) |
| |
|
| | |
| | output_message = CodeFileEditFlow(input_message) |
| |
|
| | |
| | print(output_message.data) |