File size: 1,363 Bytes
23272f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69dc9c6
23272f4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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, quick_load

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": "aiflows/TestCodeFlowModule", "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, "TestCodeFlow.yaml")
    cfg = read_yaml_file(cfg_path)
    with open(os.path.join(current_dir, "example_library.py"), 'w') as f:
        pass
    memory_files = {"code_library": os.path.join(current_dir, "example_library.py")}
    cfg["memory_files"] = memory_files


    TestCodeFlow = hydra.utils.instantiate(cfg, _recursive_=False, _convert_="partial")


    input_data = {
        "code": "def test():\n    print('hello world')\n",
    }
    input_message = InputMessage.build(
        data_dict=input_data,
        src_flow="Launcher",
        dst_flow=TestCodeFlow.name
    )

    # ~~~ calling the flow ~~~
    output_message = TestCodeFlow(input_message)

    print(output_message.data)