summaryrefslogtreecommitdiffhomepage
path: root/internal/llm/agent
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-14 14:57:40 -0500
committeradamdottv <[email protected]>2025-05-14 14:57:47 -0500
commitc8f8d67a88cd8237b75ca9ee0e28555c2d501bfc (patch)
tree85840ef46cdcafbc163f344c891135855db2bcc2 /internal/llm/agent
parent182e32e4f77a15154211806de5e6d324487f5d47 (diff)
downloadopencode-c8f8d67a88cd8237b75ca9ee0e28555c2d501bfc.tar.gz
opencode-c8f8d67a88cd8237b75ca9ee0e28555c2d501bfc.zip
feat: codeAction tool
Diffstat (limited to 'internal/llm/agent')
-rw-r--r--internal/llm/agent/tools.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/llm/agent/tools.go b/internal/llm/agent/tools.go
index a0e835ff0..dba437bd2 100644
--- a/internal/llm/agent/tools.go
+++ b/internal/llm/agent/tools.go
@@ -37,6 +37,7 @@ func PrimaryAgentTools(
tools.NewReferencesTool(lspClients),
tools.NewDocSymbolsTool(lspClients),
tools.NewWorkspaceSymbolsTool(lspClients),
+ tools.NewCodeActionTool(lspClients),
NewAgentTool(sessions, messages, lspClients),
}, mcpTools...,
)