Spaces:
Sleeping
Sleeping
Delete app.py with huggingface_hub
Browse files
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()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|