Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Thebull
/
Micro
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Thebull
commited on
Jan 23, 2024
Commit
0f32399
·
verified
·
1 Parent(s):
4fbdcc7
Upload App.txt
Browse files
Files changed (1)
hide
show
App.txt
+1
-0
App.txt
ADDED
Viewed
@@ -0,0 +1 @@
1
+
import gradio as gr def greet(name): return "Hello " + name + "!!" iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()