aliabd HF Staff commited on
Commit
1eabeaa
·
1 Parent(s): 5e07514

Delete app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +0 -13
app.py DELETED
@@ -1,13 +0,0 @@
1
- import gradio as gr
2
-
3
-
4
- def greet(name: str, repeat: float):
5
- return "Hello " + name * int(repeat) + "!!"
6
-
7
-
8
- demo = gr.Interface(
9
- fn=greet, inputs=[gr.Textbox(lines=2, max_lines=4), gr.Number()], outputs="textarea"
10
- )
11
-
12
- if __name__ == "__main__":
13
- demo.launch()