Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Casio991ms
/
MathBot
like
6
Runtime error
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
23442bf
MathBot
/
app.py
Casio991ms
Add application file
23442bf
almost 3 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
input
):
return
"Hello "
+
input
+
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()