2024-06-12 02:35:07 -06:00
|
|
|
package toolbox
|
2024-02-21 21:55:38 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2024-06-23 12:57:08 -06:00
|
|
|
toolutil "git.mlow.ca/mlow/lmcli/pkg/agents/toolbox/util"
|
2024-06-12 02:35:07 -06:00
|
|
|
"git.mlow.ca/mlow/lmcli/pkg/api"
|
2024-02-21 21:55:38 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const FILE_INSERT_LINES_DESCRIPTION = `Insert lines into a file, must specify path.
|
|
|
|
|
|
|
|
Make sure your inserts match the flow and indentation of surrounding content.`
|
|
|
|
|
2024-06-12 02:35:07 -06:00
|
|
|
var FileInsertLinesTool = api.ToolSpec{
|
2024-02-21 21:55:38 -07:00
|
|
|
Name: "file_insert_lines",
|
|
|
|
Description: FILE_INSERT_LINES_DESCRIPTION,
|
2024-06-12 02:35:07 -06:00
|
|
|
Parameters: []api.ToolParameter{
|
2024-02-21 21:55:38 -07:00
|
|
|
{
|
|
|
|
Name: "path",
|
|
|
|
Type: "string",
|
|
|
|
Description: "Path of the file to be modified, relative to the current working directory.",
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "position",
|
|
|
|
Type: "integer",
|
|
|
|
Description: `Which line to insert content *before*.`,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "content",
|
|
|
|
Type: "string",
|
|
|
|
Description: `The content to insert.`,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
},
|
2024-06-12 02:35:07 -06:00
|
|
|
Impl: func(tool *api.ToolSpec, args map[string]interface{}) (string, error) {
|
2024-02-21 21:55:38 -07:00
|
|
|
tmp, ok := args["path"]
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("path parameter to write_file was not included.")
|
|
|
|
}
|
|
|
|
path, ok := tmp.(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("Invalid path in function arguments: %v", tmp)
|
|
|
|
}
|
|
|
|
var position int
|
|
|
|
tmp, ok = args["position"]
|
|
|
|
if ok {
|
|
|
|
tmp, ok := tmp.(float64)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("Invalid position in function arguments: %v", tmp)
|
|
|
|
}
|
|
|
|
position = int(tmp)
|
|
|
|
}
|
|
|
|
var content string
|
|
|
|
tmp, ok = args["content"]
|
|
|
|
if ok {
|
|
|
|
content, ok = tmp.(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("Invalid content in function arguments: %v", tmp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result := fileInsertLines(path, position, content)
|
|
|
|
ret, err := result.ToJson()
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("Could not serialize result: %v", err)
|
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2024-06-12 02:35:07 -06:00
|
|
|
func fileInsertLines(path string, position int, content string) api.CallResult {
|
2024-02-21 21:55:38 -07:00
|
|
|
ok, reason := toolutil.IsPathWithinCWD(path)
|
|
|
|
if !ok {
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Message: reason}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Read the existing file's content
|
|
|
|
data, err := os.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
if !os.IsNotExist(err) {
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Message: fmt.Sprintf("Could not read path: %s", err.Error())}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|
|
|
|
_, err = os.Create(path)
|
|
|
|
if err != nil {
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Message: fmt.Sprintf("Could not create new file: %s", err.Error())}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|
|
|
|
data = []byte{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if position < 1 {
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Message: "start_line cannot be less than 1"}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
lines := strings.Split(string(data), "\n")
|
|
|
|
contentLines := strings.Split(strings.Trim(content, "\n"), "\n")
|
|
|
|
|
|
|
|
before := lines[:position-1]
|
|
|
|
after := lines[position-1:]
|
|
|
|
lines = append(before, append(contentLines, after...)...)
|
|
|
|
|
|
|
|
newContent := strings.Join(lines, "\n")
|
|
|
|
|
|
|
|
// Join the lines and write back to the file
|
|
|
|
err = os.WriteFile(path, []byte(newContent), 0644)
|
|
|
|
if err != nil {
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Message: fmt.Sprintf("Could not write to path: %s", err.Error())}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|
|
|
|
|
2024-06-12 02:35:07 -06:00
|
|
|
return api.CallResult{Result: newContent}
|
2024-02-21 21:55:38 -07:00
|
|
|
}
|