Run myaiteam2/zip-2-full-song using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"myaiteam2/zip-2-full-song:10ecafed97d742481569d4bd06e64654c25df478b210a7304395711e160e13fa",
input={}
)
# To access the file URL:print(output.url())
#=> "http://example.com"# To write the file to disk:withopen("my-image.png", "wb") as file:
file.write(output.read())