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