Переглянути джерело

ignore linked images when image id is none (#7890)

tags/0.7.3
Jyong 1 рік тому
джерело
коміт
6f33351eb3
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 3 додано та 1 видалено
  1. 3
    1
      api/core/rag/extractor/word_extractor.py

+ 3
- 1
api/core/rag/extractor/word_extractor.py Переглянути файл

@@ -170,6 +170,8 @@ class WordExtractor(BaseExtractor):
if run.element.xpath('.//a:blip'):
for blip in run.element.xpath('.//a:blip'):
image_id = blip.get("{http://schemas.openxmlformats.org/officeDocument/2006/relationships}embed")
if not image_id:
continue
image_part = paragraph.part.rels[image_id].target_part

if image_part in image_map:
@@ -256,6 +258,6 @@ class WordExtractor(BaseExtractor):
content.append(parsed_paragraph)
elif isinstance(element.tag, str) and element.tag.endswith('tbl'): # table
table = tables.pop(0)
content.append(self._table_to_markdown(table,image_map))
content.append(self._table_to_markdown(table, image_map))
return '\n'.join(content)


Завантаження…
Відмінити
Зберегти