Update app.py
Browse files
app.py
CHANGED
@@ -55,6 +55,7 @@ def extract_names_from_docx(docx_file):
|
|
55 |
# Extraer los nombres de cada fragmento y combinarlos
|
56 |
all_persons = []
|
57 |
for fragment in text_fragments:
|
|
|
58 |
persons = extract_names_from_text(fragment)
|
59 |
all_persons.extend(persons)
|
60 |
|
|
|
55 |
# Extraer los nombres de cada fragmento y combinarlos
|
56 |
all_persons = []
|
57 |
for fragment in text_fragments:
|
58 |
+
print(f'{len(fragment)}\n\n{fragment}')
|
59 |
persons = extract_names_from_text(fragment)
|
60 |
all_persons.extend(persons)
|
61 |
|