247 lines
7.6 KiB
Lua
247 lines
7.6 KiB
Lua
local _M = {}
|
|
|
|
-- imports
|
|
local cjson = require("cjson.safe")
|
|
local fmt = string.format
|
|
local ai_shared = require("kong.llm.drivers.shared")
|
|
local socket_url = require "socket.url"
|
|
local string_gsub = string.gsub
|
|
local ai_plugin_ctx = require("kong.llm.plugin.ctx")
|
|
--
|
|
|
|
-- globals
|
|
local DRIVER_NAME = "openai"
|
|
--
|
|
|
|
local function handle_stream_event(event_t)
|
|
return event_t.data
|
|
end
|
|
|
|
local transformers_to = {
|
|
["llm/v1/chat"] = function(request_table, model_info, route_type)
|
|
request_table.model = model_info.name or request_table.model
|
|
request_table.stream = request_table.stream or false -- explicitly set this
|
|
request_table.top_k = nil -- explicitly remove unsupported default
|
|
|
|
return request_table, "application/json", nil
|
|
end,
|
|
|
|
["llm/v1/completions"] = function(request_table, model_info, route_type)
|
|
request_table.model = model_info.name or request_table.model
|
|
request_table.stream = request_table.stream or false -- explicitly set this
|
|
request_table.top_k = nil -- explicitly remove unsupported default
|
|
|
|
return request_table, "application/json", nil
|
|
end,
|
|
}
|
|
|
|
local transformers_from = {
|
|
["llm/v1/chat"] = function(response_string, _)
|
|
local response_object, err = cjson.decode(response_string)
|
|
if err then
|
|
return nil, "failed to decode llm/v1/chat response"
|
|
end
|
|
|
|
if response_object.choices then
|
|
return response_string, nil
|
|
else
|
|
return nil, "'choices' not in llm/v1/chat response"
|
|
end
|
|
end,
|
|
|
|
["llm/v1/completions"] = function(response_string, _)
|
|
local response_object, err = cjson.decode(response_string)
|
|
if err then
|
|
return nil, "failed to decode llm/v1/completions response"
|
|
end
|
|
|
|
if response_object.choices then
|
|
return response_string, nil
|
|
else
|
|
return nil, "'choices' not in llm/v1/completions response"
|
|
end
|
|
end,
|
|
|
|
["stream/llm/v1/chat"] = handle_stream_event,
|
|
["stream/llm/v1/completions"] = handle_stream_event,
|
|
}
|
|
|
|
function _M.from_format(response_string, model_info, route_type)
|
|
ngx.log(ngx.DEBUG, "converting from ", model_info.provider, "://", route_type, " type to kong")
|
|
|
|
-- MUST return a string, to set as the response body
|
|
if not transformers_from[route_type] then
|
|
return nil, fmt("no transformer available from format %s://%s", model_info.provider, route_type)
|
|
end
|
|
|
|
local ok, response_string, err = pcall(transformers_from[route_type], response_string, model_info)
|
|
if not ok then
|
|
err = response_string
|
|
end
|
|
if err then
|
|
return nil, fmt("transformation failed from type %s://%s: %s",
|
|
model_info.provider,
|
|
route_type,
|
|
err or "unexpected_error"
|
|
)
|
|
end
|
|
|
|
return response_string, nil
|
|
end
|
|
|
|
function _M.to_format(request_table, model_info, route_type)
|
|
ngx.log(ngx.DEBUG, "converting from kong type to ", model_info.provider, "/", route_type)
|
|
|
|
if route_type == "preserve" then
|
|
-- do nothing
|
|
return request_table, nil, nil
|
|
end
|
|
|
|
if not transformers_to[route_type] then
|
|
return nil, nil, fmt("no transformer for %s://%s", model_info.provider, route_type)
|
|
end
|
|
|
|
request_table = ai_shared.merge_config_defaults(request_table, model_info.options, model_info.route_type)
|
|
|
|
local ok, response_object, content_type, err = pcall(
|
|
transformers_to[route_type],
|
|
request_table,
|
|
model_info
|
|
)
|
|
if err or (not ok) then
|
|
return nil, nil, fmt("error transforming to %s://%s", model_info.provider, route_type)
|
|
end
|
|
|
|
return response_object, content_type, nil
|
|
end
|
|
|
|
function _M.subrequest(body, conf, http_opts, return_res_table)
|
|
-- use shared/standard subrequest routine
|
|
local body_string, err
|
|
|
|
if type(body) == "table" then
|
|
body_string, err = cjson.encode(body)
|
|
if err then
|
|
return nil, nil, "failed to parse body to json: " .. err
|
|
end
|
|
elseif type(body) == "string" then
|
|
body_string = body
|
|
else
|
|
return nil, nil, "body must be table or string"
|
|
end
|
|
|
|
-- may be overridden
|
|
local url = (conf.model.options and conf.model.options.upstream_url)
|
|
or fmt(
|
|
"%s%s",
|
|
ai_shared.upstream_url_format[DRIVER_NAME],
|
|
ai_shared.operation_map[DRIVER_NAME][conf.route_type].path
|
|
)
|
|
|
|
local method = ai_shared.operation_map[DRIVER_NAME][conf.route_type].method
|
|
|
|
local headers = {
|
|
["Accept"] = "application/json",
|
|
["Content-Type"] = "application/json",
|
|
}
|
|
|
|
if conf.auth and conf.auth.header_name then
|
|
headers[conf.auth.header_name] = conf.auth.header_value
|
|
end
|
|
|
|
local res, err, httpc = ai_shared.http_request(url, body_string, method, headers, http_opts, return_res_table)
|
|
if err then
|
|
return nil, nil, "request to ai service failed: " .. err
|
|
end
|
|
|
|
if return_res_table then
|
|
return res, res.status, nil, httpc
|
|
else
|
|
-- At this point, the entire request / response is complete and the connection
|
|
-- will be closed or back on the connection pool.
|
|
local status = res.status
|
|
local body = res.body
|
|
|
|
if status > 299 then
|
|
return body, res.status, "status code " .. status
|
|
end
|
|
|
|
return body, res.status, nil
|
|
end
|
|
end
|
|
|
|
function _M.header_filter_hooks(body)
|
|
-- nothing to parse in header_filter phase
|
|
end
|
|
|
|
function _M.post_request(conf)
|
|
if ai_shared.clear_response_headers[DRIVER_NAME] then
|
|
for i, v in ipairs(ai_shared.clear_response_headers[DRIVER_NAME]) do
|
|
kong.response.clear_header(v)
|
|
end
|
|
end
|
|
end
|
|
|
|
function _M.pre_request(conf, body)
|
|
kong.service.request.set_header("Accept-Encoding", "gzip, identity") -- tell server not to send brotli
|
|
|
|
return true, nil
|
|
end
|
|
|
|
-- returns err or nil
|
|
function _M.configure_request(conf)
|
|
local model = ai_plugin_ctx.get_request_model_table_inuse()
|
|
if not model or type(model) ~= "table" or model.provider ~= DRIVER_NAME then
|
|
return nil, "invalid model parameter"
|
|
end
|
|
|
|
local parsed_url
|
|
|
|
|
|
if (model.options and model.options.upstream_url) then
|
|
parsed_url = socket_url.parse(model.options.upstream_url)
|
|
else
|
|
parsed_url = socket_url.parse(ai_shared.upstream_url_format[DRIVER_NAME])
|
|
parsed_url.path = (model.options and
|
|
model.options.upstream_path)
|
|
or (ai_shared.operation_map[DRIVER_NAME][conf.route_type] and
|
|
ai_shared.operation_map[DRIVER_NAME][conf.route_type].path)
|
|
or "/"
|
|
end
|
|
|
|
ai_shared.override_upstream_url(parsed_url, conf, model)
|
|
|
|
-- if the path is read from a URL capture, ensure that it is valid
|
|
parsed_url.path = string_gsub(parsed_url.path or "/", "^/*", "/")
|
|
|
|
kong.service.request.set_path(parsed_url.path)
|
|
kong.service.request.set_scheme(parsed_url.scheme)
|
|
kong.service.set_target(parsed_url.host, (tonumber(parsed_url.port) or 443))
|
|
|
|
local auth_header_name = conf.auth and conf.auth.header_name
|
|
local auth_header_value = conf.auth and conf.auth.header_value
|
|
local auth_param_name = conf.auth and conf.auth.param_name
|
|
local auth_param_value = conf.auth and conf.auth.param_value
|
|
local auth_param_location = conf.auth and conf.auth.param_location
|
|
|
|
if auth_header_name and auth_header_value then
|
|
local exist_value = kong.request.get_header(auth_header_name)
|
|
if exist_value == nil or not conf.auth.allow_override then
|
|
kong.service.request.set_header(auth_header_name, auth_header_value)
|
|
end
|
|
end
|
|
|
|
if auth_param_name and auth_param_value and auth_param_location == "query" then
|
|
local query_table = kong.request.get_query()
|
|
if query_table[auth_param_name] == nil or not conf.auth.allow_override then
|
|
query_table[auth_param_name] = auth_param_value
|
|
kong.service.request.set_query(query_table)
|
|
end
|
|
end
|
|
|
|
-- if auth_param_location is "form", it will have already been set in a global pre-request hook
|
|
return true, nil
|
|
end
|
|
|
|
return _M
|