fix: refactor all 'or []' and 'or {}' logic to make code more clear (#10883)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
parent
ec9f6220c9
commit
0067b16d1e
11 changed files with 20 additions and 26 deletions
|
|
@ -55,7 +55,7 @@ class ToolEngine:
|
|||
# check if this tool has only one parameter
|
||||
parameters = [
|
||||
parameter
|
||||
for parameter in tool.get_runtime_parameters() or []
|
||||
for parameter in tool.get_runtime_parameters()
|
||||
if parameter.form == ToolParameter.ToolParameterForm.LLM
|
||||
]
|
||||
if parameters and len(parameters) == 1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue