Go back to curl again

This commit is contained in:
Jonas Widen 2025-03-16 13:18:27 +01:00
parent 22a1d8045d
commit 694c3aabca

View File

@ -29,15 +29,7 @@ local function make_request(prompt)
return nil return nil
end end
local socket = require("socket")
local ssl = require("ssl")
local https = require("socket.https")
local model = "gemini-2.0-flash" -- SPECIFY Gemini 2.0 Flash MODEL local model = "gemini-2.0-flash" -- SPECIFY Gemini 2.0 Flash MODEL
local url =
string.format("https://generative-ai.googleapis.com/v1beta/models/%s:generateContent?key=%s", model, api_key)
-- Construct the JSON payload -- Construct the JSON payload
local payload = vim.json.encode({ local payload = vim.json.encode({
contents = { contents = {
@ -51,22 +43,25 @@ local function make_request(prompt)
}, },
}) })
local body, code, headers, status = https.request({ local command = string.format(
url = url, "curl -s -X POST "
method = "POST", .. "'https://generative-ai.googleapis.com/v1beta/models/%s:generateContent?key=%s' "
headers = { .. "-H 'Content-Type: application/json' "
["Content-Type"] = "application/json", .. "-d '%s'",
}, model,
source = socket.source.string(payload), api_key,
protocol = "tlsv1_2", -- Require TLS 1.2 payload
}) )
if code ~= 200 then local result = vim.fn.system(command)
vim.notify(string.format("HTTP request failed with code %d: %s", code, status), vim.log.levels.ERROR)
-- 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)
return nil return nil
end end
local decoded_result = vim.json.decode(body) local decoded_result = vim.json.decode(result)
return decoded_result return decoded_result
end end