"docs/source/vscode:/vscode.git/clone" did not exist on "181688012a2abadc93b316d91a513bee36193615"
Commit d7dd901f authored by Michael Poluektov's avatar Michael Poluektov
Browse files

refac: remove nesting

parent e3e02e04
...@@ -465,8 +465,10 @@ async def chat_completion_functions_handler( ...@@ -465,8 +465,10 @@ async def chat_completion_functions_handler(
**(valves if valves else {}) **(valves if valves else {})
) )
if not hasattr(function_module, "inlet"):
continue
try: try:
if hasattr(function_module, "inlet"):
inlet = function_module.inlet inlet = function_module.inlet
# Get the signature of the function # Get the signature of the function
...@@ -1184,8 +1186,9 @@ async def chat_completed(form_data: dict, user=Depends(get_verified_user)): ...@@ -1184,8 +1186,9 @@ async def chat_completed(form_data: dict, user=Depends(get_verified_user)):
**(valves if valves else {}) **(valves if valves else {})
) )
if not hasattr(function_module, "outlet"):
continue
try: try:
if hasattr(function_module, "outlet"):
outlet = function_module.outlet outlet = function_module.outlet
# Get the signature of the function # Get the signature of the function
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment