From 23b04c350e9372baaf45f915ab30aa148d28fa24 Mon Sep 17 00:00:00 2001 From: Eugene Myasyshchev Date: Sat, 12 Jul 2025 23:48:58 +0200 Subject: [PATCH] Fixing issue to output github copilot verification uri immediately when running in docker. (#12558) --- litellm/llms/github_copilot/authenticator.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/litellm/llms/github_copilot/authenticator.py b/litellm/llms/github_copilot/authenticator.py index fdf59a9a21..8ec9cd544f 100644 --- a/litellm/llms/github_copilot/authenticator.py +++ b/litellm/llms/github_copilot/authenticator.py @@ -339,7 +339,11 @@ class Authenticator: verification_uri = device_code_info["verification_uri"] print( # noqa: T201 - f"Please visit {verification_uri} and enter code {user_code} to authenticate." + f"Please visit {verification_uri} and enter code {user_code} to authenticate.", + + # When this is running in docker, it may not be flushed immediately + # so we force flush to ensure the user sees the message + flush=True, ) return self._poll_for_access_token(device_code)