You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/agent.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ In this example we use [Aider](https://aider.chat/) as the
6
6
baseline code completion agent
7
7
8
8
```bash
9
-
pip install aider
9
+
pip install aider-chat
10
10
```
11
11
12
12
First we assume there is an underlying `commit0`
@@ -27,10 +27,11 @@ agent config aider
27
27
```
28
28
29
29
Finally we run the underlying agent. This will create a display
30
-
that shows the current progress of the agent.
30
+
that shows the current progress of the agent. Specify the branch
31
+
you want to commit changes on.
31
32
32
33
```bash
33
-
agent run
34
+
agent run BRANCH
34
35
```
35
36
36
37
@@ -41,6 +42,6 @@ Refer to `class Agents` in `agent/agents.py`. You can design your own agent by i
41
42
42
43
43
44
* Aider automatically retries certain API errors. For details, see [here](https://github.com/paul-gauthier/aider/blob/75e1d519da9b328b0eca8a73ee27278f1289eadb/aider/sendchat.py#L17).
44
-
* When increasing --max-parallel-repos, be mindful of aider's [60-second retry timeout](https://github.com/paul-gauthier/aider/blob/75e1d519da9b328b0eca8a73ee27278f1289eadb/aider/sendchat.py#L39). Set this value according to your API tier to avoid RateLimitErrors stopping processes.
45
+
* When increasing `--max-parallel-repos`, be mindful of aider's [60-second retry timeout](https://github.com/paul-gauthier/aider/blob/75e1d519da9b328b0eca8a73ee27278f1289eadb/aider/sendchat.py#L39). Set this value according to your API tier to avoid RateLimitErrors stopping processes.
45
46
* Currently, agent will skip file with more than 1500 lines. See `agent/agent_utils.py#L199` for details.
46
47
* Running a full `all` commit0 split costs approximately $100 with Claude Sonnet 3.5.
0 commit comments