feat: 支持suno:#suno+prompt#创作歌曲+prompt

This commit is contained in:
ikechan8370 2024-02-21 14:38:13 +08:00
parent 63edc9403c
commit eea0748de7
7 changed files with 268 additions and 2 deletions

View file

@ -0,0 +1,11 @@
import { SunoClient } from '../SunoClient.js'
async function test () {
const options = {
}
let client = new SunoClient(options)
let res = await client.createSong('guacamole')
console.log(res)
}
test()