From 6b34b2c94600c8a94f012496b794aa9db996cbc5 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 31 Jul 2025 16:47:02 +0400 Subject: [PATCH] refac --- backend/open_webui/routers/configs.py | 4 ++-- backend/open_webui/utils/tools.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/open_webui/routers/configs.py b/backend/open_webui/routers/configs.py index f8c361badc..c8badfa112 100644 --- a/backend/open_webui/routers/configs.py +++ b/backend/open_webui/routers/configs.py @@ -10,7 +10,7 @@ from open_webui.config import BannerModel from open_webui.utils.tools import ( get_tool_server_data, get_tool_servers_data, - build_tool_server_url, + get_tool_server_url, ) @@ -139,7 +139,7 @@ async def verify_tool_servers_config( elif form_data.auth_type == "session": token = request.state.token.credentials - url = build_tool_server_url(form_data.url, form_data.path) + url = get_tool_server_url(form_data.url, form_data.path) return await get_tool_server_data(token, url) except Exception as e: raise HTTPException( diff --git a/backend/open_webui/utils/tools.py b/backend/open_webui/utils/tools.py index e5f7f27384..abbac4c544 100644 --- a/backend/open_webui/utils/tools.py +++ b/backend/open_webui/utils/tools.py @@ -489,7 +489,7 @@ async def get_tool_servers_data( if server.get("config", {}).get("enable"): # Path (to OpenAPI spec URL) can be either a full URL or a path to append to the base URL openapi_path = server.get("path", "openapi.json") - full_url = build_tool_server_url(server.get("url"), openapi_path) + full_url = get_tool_server_url(server.get("url"), openapi_path) info = server.get("info", {}) @@ -637,7 +637,7 @@ async def execute_tool_server( return {"error": error} -def build_tool_server_url(url: Optional[str], path: str) -> str: +def get_tool_server_url(url: Optional[str], path: str) -> str: """ Build the full URL for a tool server, given a base url and a path. """