AI_PICS / app.py
babydjac's picture
Upload folder using huggingface_hub
fbef6d9 verified
raw
history blame contribute delete
145 Bytes
import gradio as gr
def echo_function(input_text):
return input_text
iface = gr.Interface(fn=echo_function, inputs="text", outputs="text")