langchain.document_transformers.html2text.Html2TextTransformer¶

class langchain.document_transformers.html2text.Html2TextTransformer[source]¶

Bases: BaseDocumentTransformer

Replace occurrences of a particular search pattern with a replacement string .. rubric:: Example

Methods

__init__()

atransform_documents(documents, **kwargs)

Asynchronously transform a list of documents.

transform_documents(documents, **kwargs)

Transform a list of documents.

async atransform_documents(documents: Sequence[Document], **kwargs: Any) Sequence[Document][source]¶

Asynchronously transform a list of documents.

Parameters

documents – A sequence of Documents to be transformed.

Returns

A list of transformed Documents.

transform_documents(documents: Sequence[Document], **kwargs: Any) Sequence[Document][source]¶

Transform a list of documents.

Parameters

documents – A sequence of Documents to be transformed.

Returns

A list of transformed Documents.

Examples using Html2TextTransformer¶