AI-HR / app.py
amitagh's picture
new
9d37d72 verified
raw
history blame
214 Bytes
import gradio as gr
from cv_match import cv_match
hrtechapp = gr.TabbedInterface([cv_match.cvm_app],
["CV-JD Match Maker"])
if __name__ == "__main__":
hrtechapp.launch(debug=True)