mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-14 23:22:44 +00:00
refac
This commit is contained in:
parent
2734fcad63
commit
60676bfdcf
2 changed files with 3 additions and 3 deletions
|
|
@ -120,7 +120,7 @@ async def get_tools(
|
|||
auth_type = server.get('auth_type', 'none')
|
||||
|
||||
session_token = None
|
||||
if auth_type == 'oauth_2.1':
|
||||
if auth_type in ('oauth_2.1', 'oauth_2.1_static'):
|
||||
splits = server_id.split(':')
|
||||
server_id = splits[-1] if len(splits) > 1 else server_id
|
||||
|
||||
|
|
@ -148,7 +148,7 @@ async def get_tools(
|
|||
{
|
||||
'authenticated': session_token is not None,
|
||||
}
|
||||
if auth_type == 'oauth_2.1'
|
||||
if auth_type in ('oauth_2.1', 'oauth_2.1_static')
|
||||
else {}
|
||||
),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2512,7 +2512,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
|||
oauth_token = extra_params.get('__oauth_token__', None)
|
||||
if oauth_token:
|
||||
headers['Authorization'] = f'Bearer {oauth_token.get("access_token", "")}'
|
||||
elif auth_type == 'oauth_2.1':
|
||||
elif auth_type in ('oauth_2.1', 'oauth_2.1_static'):
|
||||
try:
|
||||
splits = server_id.split(':')
|
||||
server_id = splits[-1] if len(splits) > 1 else server_id
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue