renamed flows to aiflows
Browse files- __init__.py +1 -1
- run.py +5 -5
__init__.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
# {"url": "aiflows/AutoGPTFlowModule", "revision": "main"},
|
5 |
# ]
|
6 |
# Revision can correspond toa branch, commit hash or a absolute path to a local directory (ideal for development)
|
7 |
-
# from
|
8 |
|
9 |
# flow_verse.sync_dependencies(dependencies)
|
10 |
|
|
|
4 |
# {"url": "aiflows/AutoGPTFlowModule", "revision": "main"},
|
5 |
# ]
|
6 |
# Revision can correspond toa branch, commit hash or a absolute path to a local directory (ideal for development)
|
7 |
+
# from aiflows import flow_verse
|
8 |
|
9 |
# flow_verse.sync_dependencies(dependencies)
|
10 |
|
run.py
CHANGED
@@ -4,12 +4,12 @@ import os
|
|
4 |
|
5 |
import hydra
|
6 |
|
7 |
-
import
|
8 |
-
from
|
9 |
-
from
|
10 |
|
11 |
-
from
|
12 |
-
from
|
13 |
|
14 |
CACHING_PARAMETERS.do_caching = False # Set to True to enable caching
|
15 |
# clear_cache() # Uncomment this line to clear the cache
|
|
|
4 |
|
5 |
import hydra
|
6 |
|
7 |
+
import aiflows
|
8 |
+
from aiflows.flow_launchers import FlowLauncher, ApiInfo
|
9 |
+
from aiflows.utils.general_helpers import read_yaml_file
|
10 |
|
11 |
+
from aiflows import logging
|
12 |
+
from aiflows.flow_cache import CACHING_PARAMETERS, clear_cache
|
13 |
|
14 |
CACHING_PARAMETERS.do_caching = False # Set to True to enable caching
|
15 |
# clear_cache() # Uncomment this line to clear the cache
|