Use lua instead of curl

This commit is contained in:
Jonas Widen 2025-03-16 13:01:53 +01:00
parent 02711ed6af
commit b66b616d61

View File

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