SpacyTextSplitter#
- class langchain_text_splitters.spacy.SpacyTextSplitter(separator: str = '\n\n', pipeline: str = 'en_core_web_sm', max_length: int = 1000000, *, strip_whitespace: bool = True, **kwargs: Any)[source]#
Splitting text using Spacy package.
Per default, Spacyโs en_core_web_sm model is used and its default max_length is 1000000 (it is the length of maximum character this model takes which can be increased for large files). For a faster, but potentially less accurate splitting, you can use pipeline=โsentencizerโ.
Initialize the spacy text splitter.
Methods
__init__
([separator,ย pipeline,ย max_length,ย ...])Initialize the spacy text splitter.
atransform_documents
(documents,ย **kwargs)Asynchronously transform a list of documents.
create_documents
(texts[,ย metadatas])Create documents from a list of texts.
from_huggingface_tokenizer
(tokenizer,ย **kwargs)Text splitter that uses HuggingFace tokenizer to count length.
from_tiktoken_encoder
([encoding_name,ย ...])Text splitter that uses tiktoken encoder to count length.
split_documents
(documents)Split documents.
split_text
(text)Split incoming text and return chunks.
transform_documents
(documents,ย **kwargs)Transform sequence of documents by splitting them.
- Parameters:
separator (str) โ
pipeline (str) โ
max_length (int) โ
strip_whitespace (bool) โ
kwargs (Any) โ
- __init__(separator: str = '\n\n', pipeline: str = 'en_core_web_sm', max_length: int = 1000000, *, strip_whitespace: bool = True, **kwargs: Any) None [source]#
Initialize the spacy text splitter.
- Parameters:
separator (str) โ
pipeline (str) โ
max_length (int) โ
strip_whitespace (bool) โ
kwargs (Any) โ
- Return type:
None
- async atransform_documents(documents: Sequence[Document], **kwargs: Any) Sequence[Document] #
Asynchronously transform a list of documents.
- create_documents(texts: List[str], metadatas: List[dict] | None = None) List[Document] #
Create documents from a list of texts.
- Parameters:
texts (List[str]) โ
metadatas (List[dict] | None) โ
- Return type:
List[Document]
- classmethod from_huggingface_tokenizer(tokenizer: Any, **kwargs: Any) TextSplitter #
Text splitter that uses HuggingFace tokenizer to count length.
- Parameters:
tokenizer (Any) โ
kwargs (Any) โ
- Return type:
- classmethod from_tiktoken_encoder(encoding_name: str = 'gpt2', model_name: str | None = None, allowed_special: Literal['all'] | AbstractSet[str] = {}, disallowed_special: Literal['all'] | Collection[str] = 'all', **kwargs: Any) TS #
Text splitter that uses tiktoken encoder to count length.
- Parameters:
encoding_name (str) โ
model_name (str | None) โ
allowed_special (Literal['all'] | ~typing.AbstractSet[str]) โ
disallowed_special (Literal['all'] | ~typing.Collection[str]) โ
kwargs (Any) โ
- Return type:
TS
Examples using SpacyTextSplitter