CosmoAI commited on
Commit
de5ceed
·
verified ·
1 Parent(s): 65104f0

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -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()