| 174 | |
| 175 | |
| 176 | class JSONLinesLoader(JSONLoader): |
| 177 | def __init__(self, *args, **kwargs): |
| 178 | super().__init__(*args, **kwargs) |
| 179 | self._json_lines = True |
| 180 | |
| 181 | |
| 182 | langchain_community.document_loaders.JSONLinesLoader = JSONLinesLoader |
nothing calls this directly
no outgoing calls
no test coverage detected