Sfoglia il codice sorgente

fix: markdown proc will remove image (#5855)

tags/0.6.14
tangyoha 1 anno fa
parent
commit
0cbbaf3f68
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      api/core/rag/extractor/markdown_extractor.py

+ 2
- 2
api/core/rag/extractor/markdown_extractor.py Vedi File

def __init__( def __init__(
self, self,
file_path: str, file_path: str,
remove_hyperlinks: bool = True,
remove_images: bool = True,
remove_hyperlinks: bool = False,
remove_images: bool = False,
encoding: Optional[str] = None, encoding: Optional[str] = None,
autodetect_encoding: bool = True, autodetect_encoding: bool = True,
): ):

Loading…
Annulla
Salva