This commit is contained in:
Paul Gauthier 2025-01-24 18:36:01 -08:00
parent 0c13734f7a
commit b276d48ecf
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ nav_exclude: true
<canvas id="editChart" width="800" height="450" style="margin-top: 20px"></canvas>
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.

View file

@ -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.
}