Commit
·
6a1e351
1
Parent(s):
4f4d036
Update FlowVerse repository name.
Browse files- run.py +1 -1
- simpleQA.yaml +1 -1
run.py
CHANGED
@@ -15,7 +15,7 @@ CACHING_PARAMETERS.do_caching = False # Set to True in order to disable caching
|
|
15 |
logging.set_verbosity_debug()
|
16 |
|
17 |
dependencies = [
|
18 |
-
{"url": "aiflows/
|
19 |
]
|
20 |
from flows import flow_verse
|
21 |
flow_verse.sync_dependencies(dependencies)
|
|
|
15 |
logging.set_verbosity_debug()
|
16 |
|
17 |
dependencies = [
|
18 |
+
{"url": "aiflows/OpenAIChatFlowModule", "revision": os.getcwd()},
|
19 |
]
|
20 |
from flows import flow_verse
|
21 |
flow_verse.sync_dependencies(dependencies)
|
simpleQA.yaml
CHANGED
@@ -9,7 +9,7 @@ output_interface: # Connector between the Flow's output and the caller
|
|
9 |
api_output: answer # Rename the api_output to answer
|
10 |
|
11 |
flow: # Overrides the OpenAIChatAtomicFlow config
|
12 |
-
_target_: aiflows.
|
13 |
|
14 |
name: "SimpleQA_Flow"
|
15 |
description: "A flow that answers questions."
|
|
|
9 |
api_output: answer # Rename the api_output to answer
|
10 |
|
11 |
flow: # Overrides the OpenAIChatAtomicFlow config
|
12 |
+
_target_: aiflows.OpenAIChatFlowModule.OpenAIChatAtomicFlow.instantiate_from_default_config
|
13 |
|
14 |
name: "SimpleQA_Flow"
|
15 |
description: "A flow that answers questions."
|