Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Emerging-Tech
/
BhagvadGita
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
de5ceed
BhagvadGita
/
app.py
CosmoAI
Create app.py
de5ceed
verified
12 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
161 Bytes
import
gradio
as
gr
def
make_call
(
data
)
print
(data)
gradio_interface = gr.Interface(fn=make_call, inputs=
"text"
, outputs=
"text"
)
gradio_interface.launch()