Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,326 Bytes
955ce73 |
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 |
// installed using: // npx api install @coqui-api/v1.0#fbrqr4dllng0lnk import sdk from "@api/coqui-api" export const generateVoiceWithCoqui = async ({ dialogueLine = "", characterDescription = "", characterName = "", }: { dialogueLine: string characterDescription: string characterName: string }) => { if (!dialogueLine) { throw new Error("Missing dialogue line") } if (!characterDescription) { throw new Error("Missing character description") } if (!characterName) { throw new Error("Missing character name") } const coquiToken = `${process.env.PROVIDER_COQUI_API_TOKEN || ""}` if (!coquiToken) { throw new Error("Missing Coqui API token") } sdk.auth(coquiToken) const something = await sdk.samples_xtts_render_from_prompt_create({ prompt: characterDescription, name: characterName, text: dialogueLine, speed: 1 }) if (!something.data) { throw new Error(`requiest failed: ${something.data}`) } /* audio_url: "https://coqui-prod-creator-app-synthesized-samples.s3.amazonaws.com/xtts_samples/03050b77-489d-4999-b0fc-d7a56ff62b78.wav" created_at: "2023-09-18T21:47:49.357225Z" id: "03050b77-489d-4999-b0fc-d7a56ff62b78" language: "en" name: "Al Dongino" text: "Keep your friends close, but your enemies closer." */ return something.data } |