mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac
This commit is contained in:
parent
3d2fcef28f
commit
ed5d95f434
2 changed files with 2 additions and 2 deletions
|
|
@ -313,7 +313,7 @@ JWT_EXPIRES_IN = PersistentConfig(
|
|||
####################################
|
||||
|
||||
ENABLE_OAUTH_PERSISTENT_CONFIG = (
|
||||
os.environ.get("ENABLE_OAUTH_PERSISTENT_CONFIG", "True").lower() == "true"
|
||||
os.environ.get("ENABLE_OAUTH_PERSISTENT_CONFIG", "False").lower() == "true"
|
||||
)
|
||||
|
||||
ENABLE_OAUTH_SIGNUP = PersistentConfig(
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ async def get_tools(
|
|||
|
||||
if auth_type == "bearer":
|
||||
headers["Authorization"] = (
|
||||
f"Bearer {tool_server_connection.get("key", "")}"
|
||||
f"Bearer {tool_server_connection.get('key', '')}"
|
||||
)
|
||||
elif auth_type == "session":
|
||||
headers["Authorization"] = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue