Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
babydjac
/
AI_PICS
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AI_PICS
/
app.py
babydjac
Upload folder using huggingface_hub
fbef6d9
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
145 Bytes
import
gradio
as
gr
def
echo_function
(
input_text
):
return
input_text
iface = gr.Interface(fn=echo_function, inputs=
"text"
, outputs=
"text"
)