testing85 / app.py
tommy24's picture
Update app.py
4a4f909
raw
history blame contribute delete
408 Bytes
import gradio as gr
import requests
def fucntion(prompt):
response = requests.post("https://tommy24-testing45.hf.space/run/predict", json={
"data": [
prompt,
]
}).json()
data = response["data"][0]["name"]
data = "https://tommy24-testing45.hf.space/file=" + data
return data
iface = gr.Interface(fn=fucntion, inputs="text", outputs="text")
iface.launch()