feat: 更新模型代理请求处理,添加路径检查以增强授权验证

This commit is contained in:
zhaoyingbo 2025-02-27 05:14:03 +00:00
parent 7f4aedbfc8
commit 8d8bd5c305

View File

@ -6,11 +6,13 @@ import { Context } from "../../types"
* @returns
*/
export const manageModelProxyReq = async (ctx: Context) => {
const { req, headers, logger } = ctx
const auth = headers.get("Authorization")
logger.info(`Start Model Proxy, Authorization: ${auth}`)
if (!auth || auth !== "Bearer sk-21a2ce1c2ee94bc2933798eac1bbcadc") {
return ctx.genResp.forbidden("Authorization required")
const { req, headers, logger, path } = ctx
if (!path.exact("/v1/models")) {
const auth = headers.get("Authorization")
logger.info(`Start Model Proxy, Authorization: ${auth}`)
if (!auth || auth !== "Bearer sk-21a2ce1c2ee94bc2933798eac1bbcadc") {
return ctx.genResp.forbidden("Authorization required")
}
}
const PROXY_URL =
"http://ms-13871-nstruct-lmdeploy-2-0109140455.kscn-tj5-prod2-cloudml.xiaomi.srv"