mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 20:07:49 +01:00
remove config options for now
This commit is contained in:
@@ -119,8 +119,6 @@ from config import (
|
||||
WEBUI_SESSION_COOKIE_SAME_SITE,
|
||||
WEBUI_SESSION_COOKIE_SECURE,
|
||||
ENABLE_ADMIN_CHAT_ACCESS,
|
||||
ENABLE_TOOLS_FILTER,
|
||||
ENABLE_FILES_FILTER,
|
||||
AppConfig,
|
||||
)
|
||||
|
||||
@@ -372,10 +370,6 @@ async def get_content_from_response(response) -> Optional[str]:
|
||||
async def chat_completion_tools_handler(
|
||||
body: dict, user: UserModel, extra_params: dict
|
||||
) -> tuple[dict, dict]:
|
||||
log.debug(f"{ENABLE_TOOLS_FILTER=}")
|
||||
if not ENABLE_TOOLS_FILTER:
|
||||
return body, {}
|
||||
|
||||
# If tool_ids field is present, call the functions
|
||||
tool_ids = body.pop("tool_ids", None)
|
||||
if not tool_ids:
|
||||
@@ -467,10 +461,6 @@ async def chat_completion_tools_handler(
|
||||
|
||||
|
||||
async def chat_completion_files_handler(body) -> tuple[dict, dict[str, list]]:
|
||||
log.debug(f"{ENABLE_FILES_FILTER=}")
|
||||
if not ENABLE_FILES_FILTER:
|
||||
return body, {}
|
||||
|
||||
contexts = []
|
||||
citations = []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user