File size: 1,612 Bytes
dfe72e0 |
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 |
import { NextResponse, NextRequest } from "next/server";
import { DEFAULT_MODEL, sunoApi } from "@/lib/SunoApi";
import { corsHeaders } from "@/lib/utils";
export const dynamic = "force-dynamic";
/**
* desc
*
*/
export async function POST(req: NextRequest) {
try {
const body = await req.json();
let userMessage = null;
const { messages } = body;
for (let message of messages) {
if (message.role == 'user') {
userMessage = message;
}
}
if (!userMessage) {
return new NextResponse(JSON.stringify({ error: 'Prompt message is required' }), {
status: 400,
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
}
const audioInfo = await (await sunoApi).generate(userMessage.content, true, DEFAULT_MODEL, true);
const audio = audioInfo[0]
const data = `## Song Title: ${audio.title}\n\n### Lyrics:\n${audio.lyric}\n### Listen to the song: ${audio.audio_url}`
return new NextResponse(data, {
status: 200,
headers: corsHeaders
});
} catch (error: any) {
console.error('Error generating audio:', JSON.stringify(error.response.data));
return new NextResponse(JSON.stringify({ error: 'Internal server error: ' + JSON.stringify(error.response.data.detail) }), {
status: 500,
headers: {
'Content-Type': 'application/json',
...corsHeaders
}
});
}
}
export async function OPTIONS(request: Request) {
return new Response(null, {
status: 200,
headers: corsHeaders
});
} |