Replies: 2 comments 3 replies
-
The input needed for module_input_dict: Dict[str, Any] For example, if you have two components {
"qc1_0": {"input1": 1, "input2": 2},
"qc1_1": {"input1": 3, "input2": 4}
} If you are running in batch mode, the inputs would be lists of values: {
"qc1_0": {"input1": [1, 5], "input2": [2, 1]},
"qc1_1": {"input1": [3, 7], "input2": [4, 2]}
} |
Beta Was this translation helpful? Give feedback.
3 replies
-
@Duso that's not quite what i want. please write a code snipet that first build a query pipeline that can take multiple input and retrieve multiple output |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
what input and format is needed for QueryPipeline._arun_multi?
Beta Was this translation helpful? Give feedback.
All reactions