From 71066b895440b5208af9ad6ad1a7a4da82059869 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 27 Aug 2024 10:29:37 -0700 Subject: [PATCH] copy --- aider/website/assets/sample.aider.conf.yml | 3 +++ aider/website/assets/sample.env | 3 +++ aider/website/docs/config/aider_conf.md | 3 +++ aider/website/docs/config/dotenv.md | 3 +++ aider/website/docs/config/options.md | 11 ++++++++--- aider/website/docs/usage/commands.md | 2 +- 6 files changed, 21 insertions(+), 4 deletions(-) diff --git a/aider/website/assets/sample.aider.conf.yml b/aider/website/assets/sample.aider.conf.yml index c2f70f0e3..97f6c43c3 100644 --- a/aider/website/assets/sample.aider.conf.yml +++ b/aider/website/assets/sample.aider.conf.yml @@ -248,6 +248,9 @@ ## Install the latest version from the main branch #install-main-branch: false +## Upgrade aider to the latest version from PyPI +#upgrade: false + ## Apply the changes from the given file instead of running the chat (debug) #apply: diff --git a/aider/website/assets/sample.env b/aider/website/assets/sample.env index 917040198..067e7c951 100644 --- a/aider/website/assets/sample.env +++ b/aider/website/assets/sample.env @@ -249,6 +249,9 @@ ## Install the latest version from the main branch #AIDER_INSTALL_MAIN_BRANCH=false +## Upgrade aider to the latest version from PyPI +#AIDER_UPGRADE=false + ## Apply the changes from the given file instead of running the chat (debug) #AIDER_APPLY= diff --git a/aider/website/docs/config/aider_conf.md b/aider/website/docs/config/aider_conf.md index d74720c89..9012be2d5 100644 --- a/aider/website/docs/config/aider_conf.md +++ b/aider/website/docs/config/aider_conf.md @@ -296,6 +296,9 @@ cog.outl("```") ## Install the latest version from the main branch #install-main-branch: false +## Upgrade aider to the latest version from PyPI +#upgrade: false + ## Apply the changes from the given file instead of running the chat (debug) #apply: diff --git a/aider/website/docs/config/dotenv.md b/aider/website/docs/config/dotenv.md index ae348d407..c1f58b7a6 100644 --- a/aider/website/docs/config/dotenv.md +++ b/aider/website/docs/config/dotenv.md @@ -291,6 +291,9 @@ cog.outl("```") ## Install the latest version from the main branch #AIDER_INSTALL_MAIN_BRANCH=false +## Upgrade aider to the latest version from PyPI +#AIDER_UPGRADE=false + ## Apply the changes from the given file instead of running the chat (debug) #AIDER_APPLY= diff --git a/aider/website/docs/config/options.md b/aider/website/docs/config/options.md index 848f9c239..80f5f6c35 100644 --- a/aider/website/docs/config/options.md +++ b/aider/website/docs/config/options.md @@ -58,9 +58,9 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model] [--file] [--read] [--vim] [--voice-language] [--version] [--just-check-update] [--check-update | --no-check-update] - [--install-main-branch] [--apply] [--yes] [-v] - [--show-repo-map] [--show-prompts] [--exit] [--message] - [--message-file] [--encoding] [-c] [--gui] + [--install-main-branch] [--upgrade] [--apply] [--yes] + [-v] [--show-repo-map] [--show-prompts] [--exit] + [--message] [--message-file] [--encoding] [-c] [--gui] ``` @@ -478,6 +478,11 @@ Install the latest version from the main branch Default: False Environment variable: `AIDER_INSTALL_MAIN_BRANCH` +### `--upgrade` +Upgrade aider to the latest version from PyPI +Default: False +Environment variable: `AIDER_UPGRADE` + ### `--apply FILE` Apply the changes from the given file instead of running the chat (debug) Environment variable: `AIDER_APPLY` diff --git a/aider/website/docs/usage/commands.md b/aider/website/docs/usage/commands.md index bc78737f7..e73c5a58a 100644 --- a/aider/website/docs/usage/commands.md +++ b/aider/website/docs/usage/commands.md @@ -40,7 +40,7 @@ cog.out(get_help_md()) | **/tokens** | Report on the number of tokens used by the current chat context | | **/undo** | Undo the last git commit if it was done by aider | | **/voice** | Record and transcribe voice input | -| **/web** | Scrape a webpage, convert to markdown and add to the chat | +| **/web** | Scrape a webpage, convert to markdown and send in a message |