海纳百川 (@zmone)【一键部署教程】Fal画图API转Open格式,适配openwebui/next/cherry等 中发帖

首先感谢论坛大佬的资料分享
教程说明

fal画图API转OpenAI接口/v1/chat格式
兼容openwebui、nextchat、chatbox、cherry等
CF部署
可以自定义KEY
如果你有多个朋友,可以把他们的fal秘钥也“抢过来”放代码里轮训

代码如下
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url);
const path = url.pathname;
// Handle different endpoints
if (path === '/v1/chat/completions' && request.method === 'POST') {
return await handleChatComple...