From cf829803a0e0aae2cf50c99dd795a92c2ecfeb72 Mon Sep 17 00:00:00 2001 From: BorisFaj Date: Thu, 29 May 2025 11:28:11 +0200 Subject: [PATCH] Added proper type hint to function --- backend/open_webui/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/functions.py b/backend/open_webui/functions.py index 20fabb2dc..70ad5bca8 100644 --- a/backend/open_webui/functions.py +++ b/backend/open_webui/functions.py @@ -64,7 +64,7 @@ def get_function_module_by_id(request: Request, pipe_id: str): return function_module -async def get_function_models(request): +async def get_function_models(request: Request): pipes = Functions.get_functions_by_type("pipe", active_only=True) pipe_models = []