Fixed issues
This commit is contained in:
parent
df304a280e
commit
0f0821d17c
@ -73,12 +73,18 @@ function M.get_response(prompt, context, callback)
|
||||
|
||||
local contents = create_contents(prompt, context)
|
||||
local payload = vim.json.encode({contents = contents})
|
||||
|
||||
-- Fix URL construction
|
||||
local url = string.format(
|
||||
config.options.api_url .. "?key=%s",
|
||||
config.options.model,
|
||||
api_key
|
||||
)
|
||||
|
||||
-- Debug output
|
||||
print("URL:", url)
|
||||
print("Payload:", payload)
|
||||
|
||||
local request = http.Request.new(url, payload)
|
||||
request:execute(function(result, error)
|
||||
if error then
|
||||
|
@ -1,8 +1,8 @@
|
||||
local M = {}
|
||||
|
||||
M.defaults = {
|
||||
model = "gemini-2.0-flash",
|
||||
api_url = "https://generativelanguage.googleapis.com/v1/models/%s:generateContent",
|
||||
model = "gemini-2.0-flash", -- Reverting back to the original model
|
||||
api_url = "https://generativelanguage.googleapis.com/v1beta/models/%s/generateContent",
|
||||
window = {
|
||||
width = function() return math.floor(vim.o.columns / 3) end,
|
||||
height = function() return vim.o.lines - 2 end,
|
||||
|
Loading…
x
Reference in New Issue
Block a user