debug completion

This commit is contained in:
Jonas Widen 2025-03-17 07:55:42 +01:00
parent a69d1c70b1
commit f34bd77732

View File

@ -87,17 +87,13 @@ function M.get_response(prompt, context, callback)
return return
end end
store_message("user", prompt) -- Create the request content
local contents = {
local contents = create_contents(prompt, context) {
role = "user",
-- Validate contents before sending parts = {{text = context and (context .. "\n\n" .. prompt) or prompt}}
if not contents or #contents == 0 then }
vim.schedule(function() }
callback(nil, "Failed to create request contents")
end)
return
end
local payload = vim.json.encode({ local payload = vim.json.encode({
contents = contents, contents = contents,
@ -118,9 +114,12 @@ 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
callback(nil, error) vim.schedule(function()
callback(nil, "HTTP Error: " .. error)
end)
return return
end end
handle_response(result, callback) handle_response(result, callback)
end) end)
end end