From b276d48ecf2db4623e83b4f6b0f7a9afe3b0ee7f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 24 Jan 2025 18:36:01 -0800 Subject: [PATCH] copy --- aider/website/_posts/2025-01-24-r1-sonnet.md | 2 +- benchmark/rsync.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/website/_posts/2025-01-24-r1-sonnet.md b/aider/website/_posts/2025-01-24-r1-sonnet.md index 85346eca2..5042ce994 100644 --- a/aider/website/_posts/2025-01-24-r1-sonnet.md +++ b/aider/website/_posts/2025-01-24-r1-sonnet.md @@ -14,7 +14,7 @@ nav_exclude: true -Aider supports using a pair of models for coding: +Aider supports [using a pair of models for coding](https://aider.chat/2024/09/26/architect.html): - An Architect model is asked to describe how to solve the coding problem. Thinking/reasoning models often work well in this role. - An Editor model is given the Architect's solution and asked to produce specific code editing instructions to apply those changes to existing source files. diff --git a/benchmark/rsync.sh b/benchmark/rsync.sh index d18f50524..5a8e7e4ea 100755 --- a/benchmark/rsync.sh +++ b/benchmark/rsync.sh @@ -24,9 +24,9 @@ sync_repo() { rsync -avz --delete \ --exclude-from="$EXCLUDE_FILE" \ "$REPO_ROOT/" \ - "$DEST:~/aider/" || true + "$DEST:~/aider/" || sleep 0.1 - rsync -a .env .gitignore "$DEST:~/aider/." || true + rsync -a .env .gitignore "$DEST:~/aider/." || sleep 0.1 echo Done syncing, waiting. }