refac: remove nesting

This commit is contained in:
Michael Poluektov 2024-07-09 12:15:09 +01:00
parent e3e02e04e8
commit d7dd901f01

View File

@ -465,8 +465,10 @@ async def chat_completion_functions_handler(
**(valves if valves else {})
)
if not hasattr(function_module, "inlet"):
continue
try:
if hasattr(function_module, "inlet"):
inlet = function_module.inlet
# Get the signature of the function
@ -1184,8 +1186,9 @@ async def chat_completed(form_data: dict, user=Depends(get_verified_user)):
**(valves if valves else {})
)
if not hasattr(function_module, "outlet"):
continue
try:
if hasattr(function_module, "outlet"):
outlet = function_module.outlet
# Get the signature of the function