This commit is contained in:
Timothy Jaeryang Baek
2025-09-08 18:35:09 +04:00
parent f11bdc6ab5
commit f71834720e
2 changed files with 4 additions and 2 deletions

View File

@@ -817,7 +817,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
oauth_token = None
try:
oauth_token = await request.app.state.oauth_manager.get_oauth_token(
oauth_token = request.app.state.oauth_manager.get_oauth_token(
user.id, request.cookies.get("oauth_session_id", None)
)
except Exception as e: