feat: 添加模型代理请求处理功能,更新相关依赖

This commit is contained in:
zhaoyingbo 2025-02-27 05:02:30 +00:00
parent fc8d2f9f32
commit 4abeb0a0f0
4 changed files with 21 additions and 1 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -4,6 +4,7 @@ import initAppConfig from "./constant/config"
import { manageBotReq } from "./routes/bot"
import { manageMessageReq } from "./routes/message"
import { manageMicroAppReq } from "./routes/microApp"
import { manageModelProxyReq } from "./routes/modelProxy"
import { manageSheetReq } from "./routes/sheet"
import { initSchedule } from "./schedule"
import genContext from "./utils/genContext"
@ -39,6 +40,8 @@ const bunServer = Bun.serve({
if (path.exact("/sheet")) return await manageSheetReq(ctx)
// 小程序
if (path.startsWith("/micro_app")) return await manageMicroAppReq(ctx)
// 转发到模型代理服务
if (path.startsWith("/v1")) return manageModelProxyReq(ctx)
// 健康检查
if (path.full("/health")) return genResp.healthCheck()
// 其他

View File

@ -23,7 +23,7 @@
"@types/jsdom": "^21.1.7",
"@types/node-schedule": "^2.1.7",
"@types/uuid": "^10.0.0",
"bun-types": "^1.2.2",
"bun-types": "^1.2.4",
"eslint": "^9.19.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",

View File

@ -0,0 +1,17 @@
import { Context } from "../../types"
/**
*
* @param req
* @returns
*/
export const manageModelProxyReq = async (ctx: Context) => {
const { req, logger } = ctx
logger.info("model proxy")
const PROXY_URL =
"http://ms-13871-nstruct-lmdeploy-2-0109140455.kscn-tj5-prod2-cloudml.xiaomi.srv"
return fetch(PROXY_URL + new URL(req.url).pathname, {
method: req.method,
body: req.body,
})
}