Fixed issues
This commit is contained in:
parent
0f0821d17c
commit
c076f03da4
@ -74,7 +74,7 @@ function M.get_response(prompt, context, callback)
|
|||||||
local contents = create_contents(prompt, context)
|
local contents = create_contents(prompt, context)
|
||||||
local payload = vim.json.encode({contents = contents})
|
local payload = vim.json.encode({contents = contents})
|
||||||
|
|
||||||
-- Fix URL construction
|
-- Fix URL construction - properly format the URL with model and API key
|
||||||
local url = string.format(
|
local url = string.format(
|
||||||
config.options.api_url .. "?key=%s",
|
config.options.api_url .. "?key=%s",
|
||||||
config.options.model,
|
config.options.model,
|
||||||
@ -88,6 +88,9 @@ function M.get_response(prompt, context, callback)
|
|||||||
local request = http.Request.new(url, payload)
|
local request = http.Request.new(url, payload)
|
||||||
request:execute(function(result, error)
|
request:execute(function(result, error)
|
||||||
if error then
|
if error then
|
||||||
|
vim.schedule(function()
|
||||||
|
print("Error:", error) -- Add more debug output
|
||||||
|
end)
|
||||||
callback(nil, error)
|
callback(nil, error)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user