amitagh commited on
Commit
9d37d72
·
verified ·
1 Parent(s): 8cf55c3
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from cv_match import cv_match
3
+
4
+ hrtechapp = gr.TabbedInterface([cv_match.cvm_app],
5
+ ["CV-JD Match Maker"])
6
+
7
+ if __name__ == "__main__":
8
+ hrtechapp.launch(debug=True)