New provider PPIO support

This commit is contained in:
saikidev
2025-02-13 16:41:54 +08:00
parent 12863f5213
commit c0826d2275
14 changed files with 567 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import { handle as stabilityHandler } from "../../stability";
import { handle as iflytekHandler } from "../../iflytek";
import { handle as deepseekHandler } from "../../deepseek";
import { handle as siliconflowHandler } from "../../siliconflow";
import { handle as ppioHandler } from "../../ppio";
import { handle as xaiHandler } from "../../xai";
import { handle as chatglmHandler } from "../../glm";
import { handle as proxyHandler } from "../../proxy";
@@ -50,6 +51,8 @@ async function handle(
return chatglmHandler(req, { params });
case ApiPath.SiliconFlow:
return siliconflowHandler(req, { params });
case ApiPath.PPIO:
return ppioHandler(req, { params });
case ApiPath.OpenAI:
return openaiHandler(req, { params });
default: