Spaces:
Running
Running
File size: 364 Bytes
4e35e69 929aad9 4e35e69 929aad9 e437aae 929aad9 e437aae 929aad9 e437aae 88554a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from gradio_client import Client, file
import requests
import os
HF_TOKEN = os.getenv('HF_TOKEN')
client = Client("dskill/sd-audio", hf_token=HF_TOKEN, download_files=True)
result = client.predict(
prompt="a fart",
seconds_total=5,
steps=100,
cfg_scale=7,
api_name="/generate_audio"
)
#this is on your local machine wtf wild
print("result: " + result) |