nbaldwin commited on
Commit
c9f9fe3
1 Parent(s): f475b4a

renamed flows to aiflows

Browse files
Files changed (2) hide show
  1. __init__.py +1 -1
  2. 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 flows import flow_verse
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 flows
8
- from flows.flow_launchers import FlowLauncher, ApiInfo
9
- from flows.utils.general_helpers import read_yaml_file
10
 
11
- from flows import logging
12
- from flows.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
 
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