We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e1a2e5 commit fb4b8d2Copy full SHA for fb4b8d2
comps/cores/mega/orchestrator.py
@@ -136,7 +136,10 @@ async def execute(
136
# send the cur_node request/reply
137
endpoint = self.services[cur_node].endpoint_path
138
llm_parameters_dict = llm_parameters.dict()
139
- if self.services[cur_node].service_type == ServiceType.LLM:
+ if (
140
+ self.services[cur_node].service_type == ServiceType.LLM
141
+ or self.services[cur_node].service_type == ServiceType.LVM
142
+ ):
143
for field, value in llm_parameters_dict.items():
144
if inputs.get(field) != value:
145
inputs[field] = value
0 commit comments