Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amitagh
/
AI-HR
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
amitagh
commited on
Aug 23, 2024
Commit
9d37d72
·
verified
·
1 Parent(s):
8cf55c3
new
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
+
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)