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/tests/integration_tests
Matt Robinson 3637d6da6e
feat: add loader for open office odt files (#4405)
# ODF File Loader

Adds a data loader for handling Open Office ODT files. Requires
`unstructured>=0.6.3`.

### Testing

The following should work using the `fake.odt` example doc from the
[`unstructured` repo](https://github.com/Unstructured-IO/unstructured).

```python
from langchain.document_loaders import UnstructuredODTLoader

loader = UnstructuredODTLoader(file_path="fake.odt", mode="elements")
loader.load()

loader = UnstructuredODTLoader(file_path="fake.odt", mode="single")
loader.load()
```
1 year ago
..
agent
cache
callbacks
chains
chat_models Check OpenAI model kwargs (#4366) 1 year ago
document_loaders feat: add loader for open office odt files (#4405) 1 year ago
embeddings
examples feat: add loader for open office odt files (#4405) 1 year ago
llms Check OpenAI model kwargs (#4366) 1 year ago
memory
prompts
retrievers added `Wikipedia` retriever (#4302) 1 year ago
utilities
vectorstores Add support for Qdrant nested filter (#4354) 1 year ago
.env.example
__init__.py
conftest.py
test_document_transformers.py
test_nlp_text_splitters.py
test_pdf_pagesplitter.py
test_schema.py
test_text_splitter.py