aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
0d71350 verified
raw
history blame contribute delete
353 Bytes
import gradio as gr
with gr.Blocks() as demo:
input_text = gr.Textbox(label="input")
@gr.render(inputs=input_text)
def show_split(text):
if len(text) == 0:
gr.Markdown("## No Input Provided")
else:
for letter in text:
gr.Textbox(letter)
if __name__ == "__main__":
demo.launch()