instructions
Browse files
app.py
CHANGED
@@ -83,6 +83,15 @@ css = """
|
|
83 |
|
84 |
# Interfaz Gradio:
|
85 |
with gr.Blocks(css=css) as interface:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
# Inputs
|
87 |
job_text_input = gr.Textbox(label="Vacancy Title", lines=1, placeholder="Enter the vacancy title")
|
88 |
gr.Markdown("Required Experience")
|
|
|
83 |
|
84 |
# Interfaz Gradio:
|
85 |
with gr.Blocks(css=css) as interface:
|
86 |
+
gr.Markdown("""
|
87 |
+
Evaluate a CV against a job position using AI. Enter the job title in the 'Vacancy Title' field and paste the CV in plain text in the 'CV in Text Format' box. Specify the desired experience in months or years using the 'Required Experience'.
|
88 |
+
|
89 |
+
For more control, expand the 'Advanced options' section to adjust the number of positions analyzed and set distance thresholds for relevance evaluation.
|
90 |
+
|
91 |
+
Once all fields are set, click the 'Process' button to analyze the CV. The results will be displayed in a structured JSON format below. You can also reset the inputs using the 'Clear' button.
|
92 |
+
|
93 |
+
At the bottom of the interface, you can find predefined examples to quickly test the app with sample data.
|
94 |
+
""")
|
95 |
# Inputs
|
96 |
job_text_input = gr.Textbox(label="Vacancy Title", lines=1, placeholder="Enter the vacancy title")
|
97 |
gr.Markdown("Required Experience")
|