From 694c3aabcab2494baffdcae6369a020b5066b87e Mon Sep 17 00:00:00 2001 From: Jonas Widen Date: Sun, 16 Mar 2025 13:18:27 +0100 Subject: [PATCH] Go back to curl again --- plugin/gemini/api.lua | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/plugin/gemini/api.lua b/plugin/gemini/api.lua index 2bd94ae..c3f6233 100644 --- a/plugin/gemini/api.lua +++ b/plugin/gemini/api.lua @@ -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