langchain/docs/extras/integrations/providers/spacy.mdx

21 lines
437 B
Plaintext
Raw Normal View History

# spaCy
>[spaCy](https://spacy.io/) is an open-source software library for advanced natural language processing, written in the programming languages Python and Cython.
## Installation and Setup
```bash
pip install spacy
```
## Text Splitter
See a [usage example](/docs/modules/data_connection/document_transformers/text_splitters/split_by_token.html#spacy).
```python
2023-07-29 15:44:32 +00:00
from langchain.text_splitter import SpacyTextSplitter
```