Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -18,12 +18,16 @@ unmasked_chars = 8
|
|
18 |
masked_key = api_key[:unmasked_chars] + '*' * (len(api_key) - unmasked_chars*2) + api_key[-unmasked_chars:]
|
19 |
print(f"API key: {masked_key}")
|
20 |
|
21 |
-
def process_cv(job_text, cv_text, req_experience, positions_cap, dist_threshold_low, dist_threshold_high):
|
22 |
if dist_threshold_low >= dist_threshold_high:
|
23 |
return {"error": "dist_threshold_low debe ser más bajo que dist_threshold_high."}
|
24 |
|
25 |
if not isinstance(cv_text, str) or not cv_text.strip():
|
26 |
return {"error": "Por favor, introduce el CV o sube un fichero."}
|
|
|
|
|
|
|
|
|
27 |
|
28 |
try:
|
29 |
procesador = ProcesadorCV(api_key, cv_text, job_text, ner_pre_prompt,
|
@@ -60,7 +64,7 @@ with open('json/response_schema.json', 'r', encoding='utf-8') as f:
|
|
60 |
with open('cv_examples/reddgr_cv.txt', 'r', encoding='utf-8') as file:
|
61 |
cv_example = file.read()
|
62 |
|
63 |
-
default_parameters = [
|
64 |
|
65 |
# Código CSS para truncar el texto de ejemplo en la interfaz (bloque "Examples" en la parte de abajo):
|
66 |
css = """
|
@@ -81,19 +85,22 @@ css = """
|
|
81 |
with gr.Blocks(css=css) as interface:
|
82 |
# Inputs
|
83 |
job_text_input = gr.Textbox(label="Título oferta de trabajo", lines=1, placeholder="Introduce el título de la oferta de trabajo")
|
|
|
|
|
|
|
|
|
84 |
cv_text_input = gr.Textbox(label="CV en formato texto", lines=5, max_lines=5, placeholder="Introduce el texto del CV")
|
85 |
|
86 |
# Opciones avanzadas ocultas en un objeto "Accordion"
|
87 |
with gr.Accordion("Opciones avanzadas", open=False):
|
88 |
-
|
89 |
-
positions_cap_input = gr.Number(label="Número máximo de puestos a extraer", value=default_parameters[1], precision=0)
|
90 |
dist_threshold_low_slider = gr.Slider(
|
91 |
label="Umbral mínimo de distancia de embeddings (puesto equivalente)",
|
92 |
-
minimum=0, maximum=1, value=default_parameters[
|
93 |
)
|
94 |
dist_threshold_high_slider = gr.Slider(
|
95 |
label="Umbral máximo de distancia de embeddings (puesto irrelevante)",
|
96 |
-
minimum=0, maximum=1, value=default_parameters[
|
97 |
)
|
98 |
|
99 |
submit_button = gr.Button("Procesar")
|
@@ -107,7 +114,7 @@ with gr.Blocks(css=css) as interface:
|
|
107 |
["Cajero de supermercado", "Trabajo de charcutero desde 2021. Antes trabajé 2 meses de camarero en un bar de tapas."] + default_parameters,
|
108 |
["Generative AI Engineer", cv_example] + default_parameters
|
109 |
],
|
110 |
-
inputs=[job_text_input, cv_text_input, req_experience_input, positions_cap_input, dist_threshold_low_slider, dist_threshold_high_slider]
|
111 |
)
|
112 |
|
113 |
# Botón "Procesar"
|
@@ -117,6 +124,7 @@ with gr.Blocks(css=css) as interface:
|
|
117 |
job_text_input,
|
118 |
cv_text_input,
|
119 |
req_experience_input,
|
|
|
120 |
positions_cap_input,
|
121 |
dist_threshold_low_slider,
|
122 |
dist_threshold_high_slider
|
@@ -132,6 +140,7 @@ with gr.Blocks(css=css) as interface:
|
|
132 |
job_text_input,
|
133 |
cv_text_input,
|
134 |
req_experience_input,
|
|
|
135 |
positions_cap_input,
|
136 |
dist_threshold_low_slider,
|
137 |
dist_threshold_high_slider
|
|
|
18 |
masked_key = api_key[:unmasked_chars] + '*' * (len(api_key) - unmasked_chars*2) + api_key[-unmasked_chars:]
|
19 |
print(f"API key: {masked_key}")
|
20 |
|
21 |
+
def process_cv(job_text, cv_text, req_experience, req_experience_unit, positions_cap, dist_threshold_low, dist_threshold_high):
|
22 |
if dist_threshold_low >= dist_threshold_high:
|
23 |
return {"error": "dist_threshold_low debe ser más bajo que dist_threshold_high."}
|
24 |
|
25 |
if not isinstance(cv_text, str) or not cv_text.strip():
|
26 |
return {"error": "Por favor, introduce el CV o sube un fichero."}
|
27 |
+
|
28 |
+
# Convertir la experiencia requerida a meses si se introduce en años
|
29 |
+
if req_experience_unit == "años":
|
30 |
+
req_experience = req_experience * 12
|
31 |
|
32 |
try:
|
33 |
procesador = ProcesadorCV(api_key, cv_text, job_text, ner_pre_prompt,
|
|
|
64 |
with open('cv_examples/reddgr_cv.txt', 'r', encoding='utf-8') as file:
|
65 |
cv_example = file.read()
|
66 |
|
67 |
+
default_parameters = [4, "años", 10, 0.5, 0.7] # Parámetros por defecto para el reinicio de la interfaz y los ejemplos predefinidos
|
68 |
|
69 |
# Código CSS para truncar el texto de ejemplo en la interfaz (bloque "Examples" en la parte de abajo):
|
70 |
css = """
|
|
|
85 |
with gr.Blocks(css=css) as interface:
|
86 |
# Inputs
|
87 |
job_text_input = gr.Textbox(label="Título oferta de trabajo", lines=1, placeholder="Introduce el título de la oferta de trabajo")
|
88 |
+
gr.Markdown("Experiencia requerida")
|
89 |
+
with gr.Row():
|
90 |
+
req_experience_input = gr.Number(label="Exp. requerida", value=default_parameters[0], precision=0, elem_id="req_exp", show_label=False)
|
91 |
+
req_experience_unit = gr.Dropdown(label="Período", choices=["meses", "años"], value=default_parameters[1], elem_id="req_exp_unit", show_label=False)
|
92 |
cv_text_input = gr.Textbox(label="CV en formato texto", lines=5, max_lines=5, placeholder="Introduce el texto del CV")
|
93 |
|
94 |
# Opciones avanzadas ocultas en un objeto "Accordion"
|
95 |
with gr.Accordion("Opciones avanzadas", open=False):
|
96 |
+
positions_cap_input = gr.Number(label="Número máximo de puestos a extraer", value=default_parameters[2], precision=0)
|
|
|
97 |
dist_threshold_low_slider = gr.Slider(
|
98 |
label="Umbral mínimo de distancia de embeddings (puesto equivalente)",
|
99 |
+
minimum=0, maximum=1, value=default_parameters[3], step=0.05
|
100 |
)
|
101 |
dist_threshold_high_slider = gr.Slider(
|
102 |
label="Umbral máximo de distancia de embeddings (puesto irrelevante)",
|
103 |
+
minimum=0, maximum=1, value=default_parameters[4], step=0.05
|
104 |
)
|
105 |
|
106 |
submit_button = gr.Button("Procesar")
|
|
|
114 |
["Cajero de supermercado", "Trabajo de charcutero desde 2021. Antes trabajé 2 meses de camarero en un bar de tapas."] + default_parameters,
|
115 |
["Generative AI Engineer", cv_example] + default_parameters
|
116 |
],
|
117 |
+
inputs=[job_text_input, cv_text_input, req_experience_input, req_experience_unit, positions_cap_input, dist_threshold_low_slider, dist_threshold_high_slider]
|
118 |
)
|
119 |
|
120 |
# Botón "Procesar"
|
|
|
124 |
job_text_input,
|
125 |
cv_text_input,
|
126 |
req_experience_input,
|
127 |
+
req_experience_unit,
|
128 |
positions_cap_input,
|
129 |
dist_threshold_low_slider,
|
130 |
dist_threshold_high_slider
|
|
|
140 |
job_text_input,
|
141 |
cv_text_input,
|
142 |
req_experience_input,
|
143 |
+
req_experience_unit,
|
144 |
positions_cap_input,
|
145 |
dist_threshold_low_slider,
|
146 |
dist_threshold_high_slider
|