Minor fixes
This commit is contained in:
parent
e050fed2b6
commit
02711ed6af
@ -1,4 +1,4 @@
|
||||
-- plugin/gemini/api.lua
|
||||
-- ~/.config/nvim/plugin/gemini/api.lua
|
||||
|
||||
local M = {}
|
||||
|
||||
@ -67,4 +67,6 @@ function M.get_response(prompt)
|
||||
end
|
||||
end
|
||||
|
||||
print("api.lua loaded")
|
||||
|
||||
return M
|
||||
|
@ -18,6 +18,8 @@ local function gemini_query(prompt)
|
||||
border = "rounded",
|
||||
title = "Google AI Response",
|
||||
})
|
||||
else
|
||||
vim.notify("Failed to get a response from Gemini API", vim.log.levels.ERROR)
|
||||
end
|
||||
end
|
||||
|
||||
@ -43,9 +45,11 @@ vim.keymap.set("n", "<leader>g", function()
|
||||
end)
|
||||
end, { desc = "Query Google AI (via Input)" })
|
||||
|
||||
-- Optional setup function if you want to add configuration
|
||||
-- Add a setup function (even if it's empty)
|
||||
local function setup()
|
||||
-- Add any setup logic here (e.g., reading configuration options)
|
||||
print("gemini.setup() called") -- For debugging
|
||||
print("api module loaded:", api) -- For debugging
|
||||
-- Optional: Add any initialization logic here
|
||||
end
|
||||
|
||||
return {
|
||||
|
Loading…
x
Reference in New Issue
Block a user