Removed debugging
This commit is contained in:
parent
bb152fd06f
commit
73ca89e3b3
@ -74,23 +74,15 @@ 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 - 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,
|
||||||
api_key
|
api_key
|
||||||
)
|
)
|
||||||
|
|
||||||
-- Debug output
|
|
||||||
print("URL:", url)
|
|
||||||
print("Payload:", payload)
|
|
||||||
|
|
||||||
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