Restore chat history
This commit is contained in:
parent
73ca89e3b3
commit
c41e4fe9dd
@ -6,6 +6,7 @@ local state = {
|
|||||||
bufnr = nil,
|
bufnr = nil,
|
||||||
winnr = nil,
|
winnr = nil,
|
||||||
current_context = nil,
|
current_context = nil,
|
||||||
|
conversation_history = {} -- Add conversation history to state
|
||||||
}
|
}
|
||||||
|
|
||||||
local function setup_chat_highlighting(bufnr)
|
local function setup_chat_highlighting(bufnr)
|
||||||
@ -140,6 +141,16 @@ function M.clear()
|
|||||||
if state.bufnr and vim.api.nvim_buf_is_valid(state.bufnr) then
|
if state.bufnr and vim.api.nvim_buf_is_valid(state.bufnr) then
|
||||||
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, {})
|
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, {})
|
||||||
end
|
end
|
||||||
|
state.conversation_history = {} -- Clear conversation history
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Add functions to manage conversation history
|
||||||
|
function M.add_message(role, content)
|
||||||
|
table.insert(state.conversation_history, {role = role, content = content})
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.get_conversation_history()
|
||||||
|
return state.conversation_history
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
Loading…
x
Reference in New Issue
Block a user