From f8746feaa1826f733fed05228b3795bdb4d342cd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 28 Sep 2024 14:55:22 -0700 Subject: [PATCH] fix: Improve warning message for unsupported streaming --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index c5f2a0869..059feb365 100644 --- a/aider/main.py +++ b/aider/main.py @@ -597,7 +597,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F if not main_model.streaming: if args.stream: io.tool_warning( - "Warning: Streaming is not supported by the selected model. Disabling streaming." + f"Warning: Streaming is not supported by {main_model.name}. Disabling streaming." ) args.stream = False