Skip to content

Commit d64bc91

Browse files
committed
loop: put each tool on its own line
Costs nothing, prevents merge conflicts for me.
1 parent aeaf892 commit d64bc91

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

loop/agent.go

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,9 +1377,15 @@ func (a *Agent) initConvoWithUsage(usage *conversation.CumulativeUsage) *convers
13771377
browserTools = bTools
13781378

13791379
convo.Tools = []*llm.Tool{
1380-
bashTool.Tool(), claudetool.Keyword, claudetool.Patch(a.patchCallback),
1381-
claudetool.Think, claudetool.TodoRead, claudetool.TodoWrite, makeDoneTool(a.codereview),
1382-
a.codereview.Tool(), claudetool.AboutSketch,
1380+
bashTool.Tool(),
1381+
claudetool.Keyword,
1382+
claudetool.Patch(a.patchCallback),
1383+
claudetool.Think,
1384+
claudetool.TodoRead,
1385+
claudetool.TodoWrite,
1386+
makeDoneTool(a.codereview),
1387+
a.codereview.Tool(),
1388+
claudetool.AboutSketch,
13831389
}
13841390
convo.Tools = append(convo.Tools, browserTools...)
13851391

0 commit comments

Comments
 (0)