From b81e286a366813156ff3c5535d2a0ceea48db71b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 23 Nov 2025 16:01:45 +0000 Subject: [PATCH 1/2] Initial plan From 9723747c167efd66c8debe262e1431b89394836b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 23 Nov 2025 16:09:40 +0000 Subject: [PATCH 2/2] Fix TemplateResponse deprecation warning - use new signature Co-authored-by: gkorland <753206+gkorland@users.noreply.github.com> --- api/routes/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routes/auth.py b/api/routes/auth.py index c7ddb675..79b6b8bb 100644 --- a/api/routes/auth.py +++ b/api/routes/auth.py @@ -401,9 +401,9 @@ async def home(request: Request) -> HTMLResponse: auth_config = _get_auth_config() return templates.TemplateResponse( + request, "chat.j2", { - "request": request, "is_authenticated": is_authenticated_flag, "user_info": user_info, "general_prefix": GENERAL_PREFIX,