73 lines
2.3 KiB
Lua
73 lines
2.3 KiB
Lua
local Path = require("plenary.path")
|
|
local Base = require("avante.llm_tools.base")
|
|
local Helpers = require("avante.llm_tools.helpers")
|
|
local Utils = require("avante.utils")
|
|
|
|
---@class AvanteLLMTool
|
|
local M = setmetatable({}, Base)
|
|
|
|
M.name = "undo_edit"
|
|
|
|
M.description = "The undo_edit tool allows you to revert the last edit made to a file."
|
|
|
|
function M.enabled() return require("avante.config").mode == "agentic" end
|
|
|
|
---@type AvanteLLMToolParam
|
|
M.param = {
|
|
type = "table",
|
|
fields = {
|
|
{
|
|
name = "path",
|
|
description = "The path to the file whose last edit should be undone",
|
|
type = "string",
|
|
},
|
|
},
|
|
usage = {
|
|
path = "The path to the file whose last edit should be undone",
|
|
},
|
|
}
|
|
|
|
---@type AvanteLLMToolReturn[]
|
|
M.returns = {
|
|
{
|
|
name = "success",
|
|
description = "True if the edit was undone successfully, false otherwise",
|
|
type = "boolean",
|
|
},
|
|
{
|
|
name = "error",
|
|
description = "Error message if the edit was not undone successfully",
|
|
type = "string",
|
|
optional = true,
|
|
},
|
|
}
|
|
|
|
---@type AvanteLLMToolFunc<{ path: string }>
|
|
function M.func(input, opts)
|
|
local on_log = opts.on_log
|
|
local on_complete = opts.on_complete
|
|
local session_ctx = opts.session_ctx
|
|
if not on_complete then return false, "on_complete not provided" end
|
|
|
|
if on_log then on_log("path: " .. input.path) end
|
|
local abs_path = Helpers.get_abs_path(input.path)
|
|
if not Helpers.has_permission_to_access(abs_path) then return false, "No permission to access path: " .. abs_path end
|
|
if not Path:new(abs_path):exists() then return false, "File not found: " .. abs_path end
|
|
if not Path:new(abs_path):is_file() then return false, "Path is not a file: " .. abs_path end
|
|
local bufnr, err = Helpers.get_bufnr(abs_path)
|
|
if err then return false, err end
|
|
local winid = Utils.get_winid(bufnr)
|
|
Helpers.confirm("Are you sure you want to undo edit this file?", function(ok, reason)
|
|
if not ok then
|
|
on_complete(false, "User declined, reason: " .. (reason or "unknown"))
|
|
return
|
|
end
|
|
vim.api.nvim_win_call(winid, function() vim.cmd("noautocmd undo") end)
|
|
vim.api.nvim_buf_call(bufnr, function() vim.cmd("noautocmd write") end)
|
|
if session_ctx then Helpers.mark_as_not_viewed(input.path, session_ctx) end
|
|
on_complete(true, nil)
|
|
end, { focus = true }, session_ctx, M.name)
|
|
end
|
|
|
|
return M
|