Fixed issues
This commit is contained in:
parent
495972f826
commit
312d48f95c
@ -46,13 +46,11 @@ local function make_request(prompt)
|
||||
-- Escape the payload for shell
|
||||
payload = vim.fn.shellescape(payload)
|
||||
|
||||
-- Updated API endpoint URL with debug headers
|
||||
-- Updated API endpoint URL with correct path
|
||||
local command = string.format(
|
||||
"curl -s -X POST "
|
||||
.. "'https://generativelanguage.googleapis.com/v1/models/%s:generateContent?key=%s' "
|
||||
.. "'https://generativelanguage.googleapis.com/v1beta/models/%s:generateContent?key=%s' "
|
||||
.. "-H 'Content-Type: application/json' "
|
||||
.. "-H 'Accept: application/json' "
|
||||
.. "-v " -- Add verbose output
|
||||
.. "-d %s",
|
||||
model,
|
||||
api_key,
|
||||
@ -61,9 +59,6 @@ local function make_request(prompt)
|
||||
|
||||
local result = vim.fn.system(command)
|
||||
|
||||
-- Debug: Print the raw response
|
||||
vim.notify("Raw API response: " .. result, vim.log.levels.DEBUG)
|
||||
|
||||
-- Check for errors during the curl execution
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.notify("Error executing curl. Check your command and ensure curl is installed.", vim.log.levels.ERROR)
|
||||
@ -76,9 +71,6 @@ local function make_request(prompt)
|
||||
return nil
|
||||
end
|
||||
|
||||
-- Debug: Print the decoded response structure
|
||||
vim.notify("Decoded response structure: " .. vim.inspect(decoded_result), vim.log.levels.DEBUG)
|
||||
|
||||
return decoded_result
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user