Tachi67 commited on
Commit
bbfdbfa
·
1 Parent(s): bdb87e1

Update run_codewriter.py

Browse files
Files changed (1) hide show
  1. run_codewriter.py +6 -6
run_codewriter.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
@@ -22,7 +22,7 @@ dependencies = [
22
  {"url": "aiflows/ChatFlowModule", "revision": "297c90d08087d9ff3139521f11d1a48d7dc63ed4"},
23
  ]
24
 
25
- from flows import flow_verse
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