langchain/docs/modules/document_loaders
Matt Robinson 1aa41b5741
feat: document loader for image files (#1330)
### Summary

Adds a document loader for image files such as `.jpg` and `.png` files.

### Testing

Run the following using the example document from the [`unstructured`
repo](https://github.com/Unstructured-IO/unstructured/tree/main/example-docs).

```python
from langchain.document_loaders.image import UnstructuredImageLoader

loader = UnstructuredImageLoader("layout-parser-paper-fast.jpg")
loader.load()
```
2023-02-27 14:43:32 -08:00
..
examples feat: document loader for image files (#1330) 2023-02-27 14:43:32 -08:00
how_to_guides.rst add CoNLL-U document loader (#1297) 2023-02-26 17:27:00 -08:00
key_concepts.md Harrison/unstructured support (#903) 2023-02-05 23:02:07 -08:00