Restore chat history

This commit is contained in:
Jonas Widen 2025-03-16 19:16:40 +01:00
parent 73ca89e3b3
commit c41e4fe9dd

View File

@ -6,6 +6,7 @@ local state = {
bufnr = nil,
winnr = nil,
current_context = nil,
conversation_history = {} -- Add conversation history to state
}
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
vim.api.nvim_buf_set_lines(state.bufnr, 0, -1, false, {})
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
return M