From 97d103f6a4fc8d2f7f1b25f9fd2953d478be1a56 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 17 Jun 2024 18:39:43 -0700 Subject: [PATCH] copy --- website/assets/sample.aider.conf.yml | 3 +++ website/docs/aider_conf.md | 3 +++ website/docs/options.md | 17 +++++++++++------ 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/website/assets/sample.aider.conf.yml b/website/assets/sample.aider.conf.yml index 9a9679c27..896cda62a 100644 --- a/website/assets/sample.aider.conf.yml +++ b/website/assets/sample.aider.conf.yml @@ -13,6 +13,9 @@ ####### # Main: +## Log the conversation with the LLM to this file (for example, .aider.llm.history) +#llm-history-file: + ## Specify the OpenAI API key #openai-api-key: diff --git a/website/docs/aider_conf.md b/website/docs/aider_conf.md index f50c88862..b13208cc7 100644 --- a/website/docs/aider_conf.md +++ b/website/docs/aider_conf.md @@ -41,6 +41,9 @@ cog.outl("```") ####### # Main: +## Log the conversation with the LLM to this file (for example, .aider.llm.history) +#llm-history-file: + ## Specify the OpenAI API key #openai-api-key: diff --git a/website/docs/options.md b/website/docs/options.md index a192227cd..300330894 100644 --- a/website/docs/options.md +++ b/website/docs/options.md @@ -14,12 +14,13 @@ from aider.args import get_md_help cog.out(get_md_help()) ]]]--> ``` -usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model] - [--opus] [--sonnet] [--4] [--4o] [--4-turbo] - [--35turbo] [--models] [--openai-api-base] - [--openai-api-type] [--openai-api-version] - [--openai-api-deployment-id] [--openai-organization-id] - [--model-metadata-file] [--edit-format] [--weak-model] +usage: aider [-h] [--llm-history-file] [--openai-api-key] + [--anthropic-api-key] [--model] [--opus] [--sonnet] + [--4] [--4o] [--4-turbo] [--35turbo] [--models] + [--openai-api-base] [--openai-api-type] + [--openai-api-version] [--openai-api-deployment-id] + [--openai-organization-id] [--model-metadata-file] + [--edit-format] [--weak-model] [--show-model-warnings | --no-show-model-warnings] [--map-tokens] [--max-chat-history-tokens] [--env-file] [--input-history-file] [--chat-history-file] @@ -52,6 +53,10 @@ Aliases: ## Main: +### `--llm-history-file LLM_HISTORY_FILE` +Log the conversation with the LLM to this file (for example, .aider.llm.history) +Environment variable: `AIDER_LLM_HISTORY_FILE` + ### `--openai-api-key OPENAI_API_KEY` Specify the OpenAI API key Environment variable: `OPENAI_API_KEY`