GotThatData commited on
Commit
bcde0da
·
1 Parent(s): 154be08

Add application file and dependencies

Browse files
Files changed (2) hide show
  1. app.py +9 -0
  2. requirements.txt +4 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Simple card greeting function
4
+ def greet(name):
5
+ return "Hello " + name + "!!"
6
+
7
+ # Gradio Interface
8
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ pandas
2
+ openai
3
+ firebase-admin
4
+ PyPDF2