Files
langchain/tests/integration_tests/document_loaders
Matt Robinson bcab894f4e feat: Add UnstructuredTSVLoader (#7367)
### Summary

Adds an `UnstructuredTSVLoader` for TSV files. Also updates the doc
strings for `UnstructuredCSV` and `UnstructuredExcel` loaders.

### Testing

```python
from langchain.document_loaders.tsv import UnstructuredTSVLoader

loader = UnstructuredTSVLoader(
    file_path="example_data/mlb_teams_2012.csv", mode="elements"
)
docs = loader.load()
```
2023-07-10 03:07:10 -04:00
..
2023-04-26 21:04:56 -07:00
2023-03-28 08:17:22 -07:00
2023-03-28 08:38:19 -07:00
2023-03-27 19:51:34 -07:00
2023-06-07 21:32:23 -07:00
2023-03-28 15:28:33 -07:00
2023-05-05 14:48:13 -07:00
2023-06-01 00:54:42 -07:00
2023-05-14 22:04:38 -07:00
2023-05-01 20:56:56 -07:00