Files
langchain/tests/integration_tests
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-07-05 13:00:16 -04:00
2023-07-08 02:17:04 -04:00
2023-07-07 19:57:59 -07:00
2023-06-28 23:04:11 -07:00
2023-07-01 13:39:19 -04:00
2023-07-05 16:02:02 -04:00
2023-06-20 22:07:00 -07:00