You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/modules
Matt Robinson 3830d900bf feat: document loader for MS Word documents (#1282)
### Summary

Adds a document loader for MS Word Documents. Works with both `.docx`
and `.doc` files as longer as the user has installed
`unstructured>=0.4.11`.

### Testing

The follow workflow test the loader for both `.doc` and `.docx` files
using example docs from the `unstructured` repo.

#### `.docx`

```python
from langchain.document_loaders import UnstructuredWordDocumentLoader

filename = "../unstructured/example-docs/fake.docx"
loader = UnstructuredWordDocumentLoader(filename)
loader.load()
```

#### `.doc`

```python
from langchain.document_loaders import UnstructuredWordDocumentLoader

filename = "../unstructured/example-docs/fake.doc"
loader = UnstructuredWordDocumentLoader(filename)
loader.load()
```
1 year ago
..
agents Make Tools own model, add ToolKit Concept (#1095) 1 year ago
chains Update key_concepts.md (#1209) (#1237) 1 year ago
document_loaders feat: document loader for MS Word documents (#1282) 1 year ago
indexes Correct typo in "Question Answering" How-To Guide (#1221) 1 year ago
llms Add Writer, Banana, Modal, StochasticAI (#1270) 1 year ago
memory chroma docs (#1012) 1 year ago
prompts chroma docs (#1012) 1 year ago
utils add ifttt tool (#1244) 1 year ago
agents.rst Feature: linkcheck-action (#534) (#542) 1 year ago
chains.rst Feature: linkcheck-action (#534) (#542) 1 year ago
document_loaders.rst Harrison/unstructured support (#903) 1 year ago
indexes.rst improve docs for indexes (#1146) 1 year ago
llms.rst Fix minor error in LLM documentation (#602) 1 year ago
memory.rst Feature: linkcheck-action (#534) (#542) 1 year ago
prompts.rst Feature: linkcheck-action (#534) (#542) 1 year ago
state_of_the_union.txt Docs refactor (#480) 1 year ago
utils.rst Feature: linkcheck-action (#534) (#542) 1 year ago