mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
21 lines
390 B
Markdown
21 lines
390 B
Markdown
|
# 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](../modules/indexes/text_splitters/examples/spacy.ipynb).
|
||
|
|
||
|
```python
|
||
|
from langchain.llms import SpacyTextSplitter
|
||
|
```
|