riffusion-app/prompts.ts

72 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-12-14 02:13:40 -07:00
// List of interesting prompts to randomly sample.
export const samplePrompts = [
"lo-fi beat for the holidays",
2022-12-14 21:37:03 -07:00
"techno DJ and a country fiddle",
2022-12-14 02:13:40 -07:00
"classical italian tenor operatic pop",
"kygo tropical dance marvin gaye",
2022-12-14 21:37:03 -07:00
"eminem style anger rap",
2022-12-14 02:13:40 -07:00
"church bells",
2022-12-14 13:44:10 -07:00
"funk bassline with a jazzy saxophone",
2022-12-14 18:32:45 -07:00
"piano concerto in a minor",
2022-12-14 02:13:40 -07:00
"rock and roll electric guitar solo",
2022-12-14 13:44:10 -07:00
"acoustic folk violin jam",
"k-pop boy group",
"typing",
"post-teen pop talent show winner",
"sean paul dancehall",
2022-12-14 02:13:40 -07:00
"mambo but from kenya",
2022-12-14 15:31:52 -07:00
"jack johnson vocals",
2022-12-14 02:13:40 -07:00
"swing jazz trumpet",
2022-12-14 13:44:10 -07:00
"bubblegum eurodance",
2022-12-14 21:37:03 -07:00
"brazilian Forró dance",
"bongos on a havana street",
"copacabana beach",
2022-12-14 13:44:10 -07:00
];
export const rollTheDicePrompts = [
"arabic (vocals:1.5)",
"classic rock mellow gold progressive",
"west coast rap vocals",
"classical flute",
"church organ with a harpsichord",
"uk permanent wave pop",
"chainsaw funk",
2022-12-14 02:13:40 -07:00
"laughing",
2022-12-14 13:44:10 -07:00
"tropical deep sea",
"piano funk",
"jamaican ska rap",
"tropical electro house moombahton",
"breathing",
"water drops",
"british soul dance",
"pop r&b urban contemporary",
2022-12-14 15:31:52 -07:00
"baroque new wave pop",
2022-12-14 13:44:10 -07:00
"reggae fusion",
"tropical german dance house",
2022-12-14 21:37:03 -07:00
"alarm clock",
"(caribbean:1.5) (jazz:0.3)",
"new orleans blues",
"clarinet with maracas",
"sultry sinatra",
"ancient chinese hymn",
"square dancing in wyoming",
"psychedelic nepalese trance",
"jazzy rapping from paris",
2022-12-14 02:13:40 -07:00
];
2022-12-14 13:44:10 -07:00
export const initialSeedImageMap = {
2022-12-14 18:32:45 -07:00
"og_beat": [3, 738973, 674, 745234, 808, 231, 3324, 323984, 123, 51209, 123, 51209, 6754, 8730],
2022-12-14 13:44:10 -07:00
"agile": [808, 231, 3324, 323984],
2022-12-14 15:54:27 -07:00
"marim": [123, 51209, 6754, 8730],
"motorway": [8730, 323984, 745234],
"vibes": [4205, 94, 78530]
2022-12-14 13:44:10 -07:00
}
2022-12-14 21:37:03 -07:00
2022-12-14 13:44:10 -07:00
export const initialSeeds = [
"og_beat",
2022-12-14 18:32:45 -07:00
// "agile",
// "marim",
2022-12-14 13:44:10 -07:00
// "motorway",
// "vibes"
2022-12-14 21:37:03 -07:00
]