ttsds
/
gptsovits_1
- Public
- 235 runs
-
A100 (80GB)
Run ttsds/gptsovits_1 with an API
Use one of our client libraries to get started quickly.
Set the REPLICATE_API_TOKEN
environment variable
export REPLICATE_API_TOKEN=<paste-your-token-here>
Learn more about authentication
Install Replicate’s Node.js client library
npm install replicate
Run ttsds/gptsovits_1 using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
import Replicate from "replicate";
const replicate = new Replicate();
const input = {
text: "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.",
language: "en",
text_reference: "and keeping eternity before the eyes, though much.",
speaker_reference: "https://replicate.delivery/pbxt/MNFXdPaUPOwYCZjZM4azsymbzE2TCV2WJXfGpeV2DrFWaSq8/example_en.wav"
};
const output = await replicate.run("ttsds/gptsovits_1:33e629c53dd218f539d7014e87feb1b1186e3384e0581eefd4b42e341276b225", { input });
import { writeFile } from "node:fs/promises";
await writeFile("output.wav", output);
//=> output.wav written to disk