Spaces:
Running
Running
File size: 5,772 Bytes
3444669 6a37520 c8af9b9 3444669 6a37520 3444669 6a37520 a874265 6a37520 66b8e19 6a37520 013ade0 6a37520 6df0f04 6a37520 3444669 6a37520 3444669 6a37520 3444669 6a37520 3444669 6a37520 3444669 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
// import { createParser } from "eventsource-parser";
// import { NextRequest, NextResponse } from "next/server";
// import { auth } from "../auth";
// async function createStream(req: NextRequest) {
// const authResult = auth(req);
// if (authResult.error) {
// return authResult.msg;
// }
// const encoder = new TextEncoder();
// const decoder = new TextDecoder();
// const res = await fetch(
// "http://lemurchat.anfans.cn/api/chat/conversation-trial",
// {
// headers: {
// "Content-Type": "application/json",
// },
// method: "POST",
// body: req.body,
// },
// );
// const stream = new ReadableStream({
// async start(controller) {
// function onParse(event: any) {
// if (event.type === "event") {
// const data = event.data;
// if (event.id == "1") {
// let text1 = data.slice(data.indexOf("content"));
// const text = text1.slice(12, text1.indexOf("index") - 6);
// const queue = encoder.encode(text);
// controller.enqueue(queue);
// return;
// }
// // https://beta.openai.com/docs/api-reference/completions/create#completions/create-stream
// try {
// const json = JSON.parse(data);
// // console.log(data.indexOf("content"))
// if (data.indexOf("content") == -1) {
// controller.close();
// return;
// }
// // console.log(event.data)
// const text = JSON.parse(json.data.slice(5)).choices[0].delta
// .content;
// const queue = encoder.encode(text);
// controller.enqueue(queue);
// } catch (e) {
// controller.error(e);
// }
// }
// }
// const parser = createParser(onParse);
// for await (const chunk of res.body as any) {
// parser.feed(decoder.decode(chunk));
// }
// },
// });
// return stream;
// }
// export async function POST(req: NextRequest) {
// try {
// const authResult = auth(req);
// if (authResult.error) {
// return NextResponse.json(authResult, {
// status: 401,
// });
// }
// const stream = await createStream(req);
// return new Response(stream);
// } catch (error) {
// console.error("[Chat Stream]", error);
// }
// }
// export const config = {
// runtime: "edge",
// };
import { createParser } from "eventsource-parser";
import { NextRequest, NextResponse } from "next/server";
import { auth } from "../auth";
import { requestLemur} from "../common";
async function createStream(res: Response) {
const encoder = new TextEncoder();
const decoder = new TextDecoder();
const stream = new ReadableStream({
async start(controller) {
function onParse(event: any) {
if (event.type === "event") {
const data = event.data;
// console.log(data)
if (event.id == "1") {
let text1 = data.slice(data.indexOf("content"));
const text = text1.slice(text1.indexOf("data")+6,text1.indexOf("code")-7);
// console.log("123"+text.replaceAll('\\',''))
const queue = encoder.encode(JSON.parse(text.replaceAll('\\','')).choices[0].delta.content);
controller.enqueue(queue);
return;
}
try {
const json = JSON.parse(data);
if (data.indexOf("content") == -1||data.origin=="lemur") {
controller.close();
return;
}
var str=json.data.split("data:")
let text=""
for(let i=1;i<str.length;i++){
text=text+JSON.parse(str[i]).choices[0].delta.content
}
const queue = encoder.encode(text);
controller.enqueue(queue);
} catch (e) {
controller.error(JSON.parse(data));
}
}
}
const parser = createParser(onParse);
for await (const chunk of res.body as any) {
parser.feed(decoder.decode(chunk, { stream: true }));
}
},
});
return stream;
}
function formatResponse(msg: any) {
const jsonMsg = ["```json\n", JSON.stringify(msg, null, " "), "\n```"].join(
"",
);
return new Response(jsonMsg);
}
async function handle(
req: NextRequest,
{ params }: { params: { path: string[] } },
) {
console.log("[Lemur Route] params ", params);
const authResult = auth(req);
if (authResult.error) {
return NextResponse.json(authResult, {
status: 401,
});
}
try {
const api = await requestLemur(req);
const contentType = api.headers.get("Content-Type") ?? "";
// streaming response
if (contentType.includes("stream")) {
const stream = await createStream(api);
const res = new Response(stream);
res.headers.set("Content-Type", contentType);
return res;
}
// try to parse error msg
try {
const mayBeErrorBody = await api.json();
if (mayBeErrorBody.error) {
console.error("[Lemur Response] ", mayBeErrorBody);
return formatResponse(mayBeErrorBody);
} else {
const res = new Response(JSON.stringify(mayBeErrorBody));
res.headers.set("Content-Type", "application/json");
res.headers.set("Cache-Control", "no-cache");
return res;
}
} catch (e) {
console.error("[Lemur Parse] ", e);
return formatResponse({
msg: "invalid response from Lemur server",
error: e,
});
}
} catch (e) {
console.error("[Lemur] ", e);
return formatResponse(e);
}
}
export const GET = handle;
export const POST = handle;
export const runtime = "edge";
|