additional tools

This commit is contained in:
Kujtim Hoxha
2025-03-25 13:04:36 +01:00
parent 005b8ac167
commit 904061c243
33 changed files with 3258 additions and 236 deletions

View File

@@ -17,8 +17,15 @@ import (
)
func coderTools() []tool.BaseTool {
wd := viper.GetString("wd")
return []tool.BaseTool{
tools.NewBashTool(viper.GetString("wd")),
tools.NewAgentTool(wd),
tools.NewBashTool(wd),
tools.NewLsTool(wd),
tools.NewGlobTool(wd),
tools.NewViewTool(wd),
tools.NewWriteTool(wd),
tools.NewEditTool(wd),
}
}