From a94b871991bda95610ccb81b89b863a2d10e1063 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 9 Aug 2024 14:47:36 -0300 Subject: [PATCH] feat: Add support for uploading clipboard images and text to chat --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 74c33dc3f..24dc6358b 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -898,7 +898,7 @@ class Commands: return text def cmd_clipboard(self, args): - "Add content from the clipboard to the chat (supports both text and images)" + "Add image/text from the clipboard to the chat (optionally provide a name for the image)" try: # Check for image first image = ImageGrab.grabclipboard()