Update run_replanning.py
Browse files- run_replanning.py +6 -6
run_replanning.py
CHANGED
@@ -2,12 +2,12 @@ import os
|
|
2 |
|
3 |
import hydra
|
4 |
|
5 |
-
from
|
6 |
-
from
|
7 |
-
from
|
8 |
|
9 |
-
from
|
10 |
-
from
|
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
|
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 |
|