aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
ac404b7 verified
raw
history blame contribute delete
265 Bytes
import gradio as gr
def greet(name: str, repeat: float):
return "Hello " + name * int(repeat) + "!!"
demo = gr.Interface(
fn=greet, inputs=[gr.Textbox(lines=2, max_lines=4), gr.Number()], outputs="textarea"
)
if __name__ == "__main__":
demo.launch()