Update run_codewriter.py
Browse files- run_codewriter.py +6 -6
run_codewriter.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
|
@@ -22,7 +22,7 @@ dependencies = [
|
|
22 |
{"url": "aiflows/ChatFlowModule", "revision": "297c90d08087d9ff3139521f11d1a48d7dc63ed4"},
|
23 |
]
|
24 |
|
25 |
-
from
|
26 |
|
27 |
flow_verse.sync_dependencies(dependencies)
|
28 |
|
|
|
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
|
|
|
22 |
{"url": "aiflows/ChatFlowModule", "revision": "297c90d08087d9ff3139521f11d1a48d7dc63ed4"},
|
23 |
]
|
24 |
|
25 |
+
from aiflows import flow_verse
|
26 |
|
27 |
flow_verse.sync_dependencies(dependencies)
|
28 |
|