Fixed issues

This commit is contained in:
Jonas Widen 2025-03-16 14:21:18 +01:00
parent 312d48f95c
commit fdf90a6bdb

View File

@ -19,7 +19,7 @@ local function get_api_key()
end end
local function make_request(prompt) local function make_request(prompt)
local api_key = get_api_key() -- Get API key from environment or global variable local api_key = get_api_key()
if not api_key then if not api_key then
vim.notify( vim.notify(
@ -29,8 +29,20 @@ local function make_request(prompt)
return nil return nil
end end
local model = "gemini-pro" -- Using the standard model instead of flash -- List models first to verify available options
-- Construct the JSON payload local list_models_command = string.format(
"curl -s 'https://generativelanguage.googleapis.com/v1/models?key=%s'",
api_key
)
local models_result = vim.fn.system(list_models_command)
local success, models_data = pcall(vim.json.decode, models_result)
if success and models_data.models then
vim.notify("Available models: " .. vim.inspect(models_data.models), vim.log.levels.DEBUG)
end
local model = "gemini-1.0-pro" -- Updated model name
local payload = vim.json.encode({ local payload = vim.json.encode({
contents = { contents = {
{ {
@ -46,10 +58,10 @@ local function make_request(prompt)
-- Escape the payload for shell -- Escape the payload for shell
payload = vim.fn.shellescape(payload) payload = vim.fn.shellescape(payload)
-- Updated API endpoint URL with correct path -- Updated API endpoint URL with v1 path
local command = string.format( local command = string.format(
"curl -s -X POST " "curl -s -X POST "
.. "'https://generativelanguage.googleapis.com/v1beta/models/%s:generateContent?key=%s' " .. "'https://generativelanguage.googleapis.com/v1/models/%s:generateContent?key=%s' "
.. "-H 'Content-Type: application/json' " .. "-H 'Content-Type: application/json' "
.. "-d %s", .. "-d %s",
model, model,