-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathindex.ts
47 lines (39 loc) · 1.34 KB
/
index.ts
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
import type { NextApiRequest, NextApiResponse } from "next";
const SADE_SMOOTH_OPERATOR_LYRIC = `Diamond life, lover boy
He move in space with minimum waste and maximum joy
City lights and business nights
When you require streetcar desire for higher heights
No place for beginners or sensitive hearts
When sentiment is left to chance
No place to be ending but somewhere to start
No need to ask, he's a smooth operator
Smooth operator, smooth operator
Smooth operator`;
function sleep(ms: number) {
return new Promise((resolve) => {
setTimeout(resolve, ms);
});
}
export default async function handler(
req: NextApiRequest,
res: NextApiResponse,
) {
if (req.method !== "GET") {
return res.status(405).json({ message: "Method not allowed" });
}
res.setHeader("Content-Type", "text/event-stream");
res.setHeader("Connection", "keep-alive");
res.setHeader("Cache-Control", "no-cache, no-transform");
res.setHeader("Transfer-Encoding", "chunked");
res.write(
`data: ${JSON.stringify({ type: "start", model: "ai-lyric-model" })}\n\n`,
);
await sleep(1000);
const lines = SADE_SMOOTH_OPERATOR_LYRIC.split("\n");
for (const line of lines) {
res.write(`data: ${JSON.stringify({ type: "content", body: line })}\n\n`);
await sleep(1000);
}
res.write(`data: ${JSON.stringify({ type: "complete" })}\n\n`);
res.end();
}