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...
CosmoAI
commited on
May 7, 2024
Commit
de5ceed
·
verified
·
1 Parent(s):
65104f0
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def make_call(data)
4
+
print(data)
5
+
6
+
7
+
gradio_interface = gr.Interface(fn=make_call, inputs="text", outputs="text")
8
+
gradio_interface.launch()