Tachi67 commited on
Commit
aacc547
1 Parent(s): 424f6b7

Update run_replanning.py

Browse files
Files changed (1) hide show
  1. run_replanning.py +6 -6
run_replanning.py CHANGED
@@ -2,12 +2,12 @@ import os
2
 
3
  import hydra
4
 
5
- from flows.backends.api_info import ApiInfo
6
- from flows.messages import InputMessage
7
- from flows.utils.general_helpers import read_yaml_file
8
 
9
- from flows import logging
10
- from flows.flow_cache import CACHING_PARAMETERS, clear_cache
11
 
12
  CACHING_PARAMETERS.do_caching = False # Set to True in order to disable caching
13
  # clear_cache() # Uncomment this line to clear the cache
@@ -25,7 +25,7 @@ dependencies = [
25
  {"url": "aiflows/HumanStandardInputFlowModule", "revision": "5683a922372c5fa90be9f6447d6662d8d80341fc"}
26
  ]
27
 
28
- from flows import flow_verse
29
 
30
  flow_verse.sync_dependencies(dependencies)
31
 
 
2
 
3
  import hydra
4
 
5
+ from aiflows.backends.api_info import ApiInfo
6
+ from aiflows.messages import InputMessage
7
+ from aiflows.utils.general_helpers import read_yaml_file
8
 
9
+ from aiflows import logging
10
+ from aiflows.flow_cache import CACHING_PARAMETERS, clear_cache
11
 
12
  CACHING_PARAMETERS.do_caching = False # Set to True in order to disable caching
13
  # clear_cache() # Uncomment this line to clear the cache
 
25
  {"url": "aiflows/HumanStandardInputFlowModule", "revision": "5683a922372c5fa90be9f6447d6662d8d80341fc"}
26
  ]
27
 
28
+ from aiflows import flow_verse
29
 
30
  flow_verse.sync_dependencies(dependencies)
31