From c290001a9faa6e8994bc41d5781dd0042e77cddd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 9 Aug 2024 17:12:45 -0400 Subject: [PATCH] fix: Update web command description to better reflect functionality --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index c5b269db1..fa22298b7 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -119,7 +119,7 @@ class Commands: self.io.tool_output("Please provide a partial model name to search for.") def cmd_web(self, args): - "Use headless selenium to scrape a webpage and add the content to the chat" + "Scrape a webpage, convert to markdown and add to the chat" url = args.strip() if not url: self.io.tool_error("Please provide a URL to scrape.")