defaultHello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe.
typetext
{
"prompt": "Hello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe."
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_Amg**********************************
This is your API token. Keep it to yourself.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run suno-ai/bark using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"suno-ai/bark:f23937d7c80b3c0f06c5a01ec55154388647292cb9398bd7d117678bc930791a",
{
input: {
prompt: "Hello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe."
}
}
);
// To access the file URL:
console.log(output.url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_Amg**********************************
This is your API token. Keep it to yourself.
import replicate
Run suno-ai/bark using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"suno-ai/bark:f23937d7c80b3c0f06c5a01ec55154388647292cb9398bd7d117678bc930791a",
input={
"prompt": "Hello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe."
}
)
# To access the file URL:
print(output.url())
#=> "http://example.com"
# To write the file to disk:
with open("my-image.png", "wb") as file:
file.write(output.read())
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_Amg**********************************
This is your API token. Keep it to yourself.
Run suno-ai/bark using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"version": "suno-ai/bark:f23937d7c80b3c0f06c5a01ec55154388647292cb9398bd7d117678bc930791a",
"input": {
"prompt": "Hello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe."
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
{
"id": "ngk3yp5omvdsvkcdoljxs2m4ra",
"model": "suno-ai/bark",
"version": "f23937d7c80b3c0f06c5a01ec55154388647292cb9398bd7d117678bc930791a",
"input": {
"prompt": "Hello, my name is Suno. And, uh — and I like pizza. [laughs] But I also have other interests such as playing tic tac toe."
},
"logs": "0%| | 0/100 [00:00<?, ?it/s]\n 1%| | 1/100 [00:00<00:27, 3.65it/s]\n 3%|▎ | 3/100 [00:00<00:13, 7.12it/s]\n 5%|▌ | 5/100 [00:00<00:10, 8.90it/s]\n 7%|▋ | 7/100 [00:00<00:09, 9.98it/s]\n 9%|▉ | 9/100 [00:00<00:08, 10.54it/s]\n 11%|█ | 11/100 [00:01<00:08, 11.09it/s]\n 13%|█▎ | 13/100 [00:01<00:07, 11.16it/s]\n 15%|█▌ | 15/100 [00:01<00:07, 11.32it/s]\n 17%|█▋ | 17/100 [00:01<00:07, 11.66it/s]\n 19%|█▉ | 19/100 [00:01<00:06, 11.69it/s]\n 21%|██ | 21/100 [00:01<00:06, 12.05it/s]\n 23%|██▎ | 23/100 [00:02<00:06, 12.17it/s]\n 25%|██▌ | 25/100 [00:02<00:06, 11.89it/s]\n 27%|██▋ | 27/100 [00:02<00:06, 11.64it/s]\n 29%|██▉ | 29/100 [00:02<00:06, 11.51it/s]\n 31%|███ | 31/100 [00:02<00:05, 11.61it/s]\n 33%|███▎ | 33/100 [00:02<00:05, 11.88it/s]\n 35%|███▌ | 35/100 [00:03<00:05, 11.82it/s]\n 37%|███▋ | 37/100 [00:03<00:05, 11.75it/s]\n 39%|███▉ | 39/100 [00:03<00:05, 11.63it/s]\n 41%|████ | 41/100 [00:03<00:05, 11.64it/s]\n 43%|████▎ | 43/100 [00:03<00:04, 11.79it/s]\n 45%|████▌ | 45/100 [00:04<00:04, 11.94it/s]\n 47%|████▋ | 47/100 [00:04<00:04, 11.83it/s]\n 49%|████▉ | 49/100 [00:04<00:04, 11.89it/s]\n 51%|█████ | 51/100 [00:04<00:04, 11.70it/s]\n 53%|█████▎ | 53/100 [00:04<00:04, 11.56it/s]\n 55%|█████▌ | 55/100 [00:04<00:03, 11.64it/s]\n 57%|█████▋ | 57/100 [00:05<00:03, 11.63it/s]\n 59%|█████▉ | 59/100 [00:05<00:03, 11.38it/s]\n 61%|██████ | 61/100 [00:05<00:03, 11.38it/s]\n 63%|██████▎ | 63/100 [00:05<00:03, 11.07it/s]\n 65%|██████▌ | 65/100 [00:05<00:03, 11.19it/s]\n 67%|██████▋ | 67/100 [00:05<00:02, 11.28it/s]\n 69%|██████▉ | 69/100 [00:06<00:02, 11.08it/s]\n 71%|███████ | 71/100 [00:06<00:02, 11.11it/s]\n 73%|███████▎ | 73/100 [00:06<00:02, 10.91it/s]\n 75%|███████▌ | 75/100 [00:06<00:02, 10.78it/s]\n 77%|███████▋ | 77/100 [00:06<00:02, 10.83it/s]\n 79%|███████▉ | 79/100 [00:07<00:01, 10.86it/s]\n 81%|████████ | 81/100 [00:07<00:01, 10.64it/s]\n 83%|████████▎ | 83/100 [00:07<00:01, 10.67it/s]\n 85%|████████▌ | 85/100 [00:07<00:01, 10.57it/s]\n 87%|████████▋ | 87/100 [00:07<00:01, 10.34it/s]\n 89%|████████▉ | 89/100 [00:08<00:01, 10.39it/s]\n 91%|█████████ | 91/100 [00:08<00:00, 10.10it/s]\n 93%|█████████▎| 93/100 [00:08<00:00, 10.06it/s]\n100%|██████████| 100/100 [00:08<00:00, 20.32it/s]\n100%|██████████| 100/100 [00:08<00:00, 11.69it/s]\n 0%| | 0/36 [00:00<?, ?it/s]\n 3%|▎ | 1/36 [00:00<00:23, 1.48it/s]\n 6%|▌ | 2/36 [00:01<00:22, 1.48it/s]\n 8%|▊ | 3/36 [00:02<00:22, 1.45it/s]\n 11%|█ | 4/36 [00:02<00:22, 1.43it/s]\n 14%|█▍ | 5/36 [00:03<00:21, 1.41it/s]\n 17%|█▋ | 6/36 [00:04<00:22, 1.36it/s]\n 19%|█▉ | 7/36 [00:05<00:21, 1.34it/s]\n 22%|██▏ | 8/36 [00:05<00:21, 1.30it/s]\n 25%|██▌ | 9/36 [00:06<00:21, 1.25it/s]\n 28%|██▊ | 10/36 [00:07<00:21, 1.23it/s]\n 31%|███ | 11/36 [00:08<00:21, 1.19it/s]\n 33%|███▎ | 12/36 [00:09<00:20, 1.15it/s]\n 36%|███▌ | 13/36 [00:10<00:20, 1.13it/s]\n 39%|███▉ | 14/36 [00:11<00:19, 1.12it/s]\n 42%|████▏ | 15/36 [00:12<00:18, 1.11it/s]\n 44%|████▍ | 16/36 [00:13<00:18, 1.10it/s]\n 47%|████▋ | 17/36 [00:14<00:17, 1.10it/s]\n 50%|█████ | 18/36 [00:14<00:16, 1.10it/s]\n 53%|█████▎ | 19/36 [00:15<00:15, 1.09it/s]\n 56%|█████▌ | 20/36 [00:16<00:14, 1.08it/s]\n 58%|█████▊ | 21/36 [00:17<00:13, 1.08it/s]\n 61%|██████ | 22/36 [00:18<00:12, 1.08it/s]\n 64%|██████▍ | 23/36 [00:19<00:11, 1.09it/s]\n 67%|██████▋ | 24/36 [00:20<00:11, 1.08it/s]\n 69%|██████▉ | 25/36 [00:21<00:10, 1.08it/s]\n 72%|███████▏ | 26/36 [00:22<00:09, 1.08it/s]\n 75%|███████▌ | 27/36 [00:23<00:08, 1.08it/s]\n 78%|███████▊ | 28/36 [00:24<00:07, 1.08it/s]\n 81%|████████ | 29/36 [00:25<00:06, 1.08it/s]\n 83%|████████▎ | 30/36 [00:26<00:05, 1.08it/s]\n 86%|████████▌ | 31/36 [00:26<00:04, 1.08it/s]\n 89%|████████▉ | 32/36 [00:27<00:03, 1.08it/s]\n 92%|█████████▏| 33/36 [00:28<00:02, 1.08it/s]\n 94%|█████████▍| 34/36 [00:29<00:01, 1.08it/s]\n 97%|█████████▋| 35/36 [00:30<00:00, 1.08it/s]\n100%|██████████| 36/36 [00:31<00:00, 1.08it/s]\n100%|██████████| 36/36 [00:31<00:00, 1.14it/s]",
"output": "https://replicate.delivery/pbxt/HuWYFtJyyH50BxruGu1XfUleB3kC2NfbTy2fmHbeEwKS6BsGC/audio.wav",
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2023-04-25T22:11:26.77498Z",
"started_at": "2023-04-25T22:18:14.676132Z",
"completed_at": "2023-04-25T22:18:59.625638Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/ngk3yp5omvdsvkcdoljxs2m4ra/cancel",
"get": "https://api.replicate.com/v1/predictions/ngk3yp5omvdsvkcdoljxs2m4ra"
},
"metrics": {
"predict_time": 44.949506,
"total_time": 452.850658
}
}