mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
25 lines
815 B
Python
25 lines
815 B
Python
|
import json
|
||
|
from typing import List
|
||
|
|
||
|
from langchain_core.documents import Document
|
||
|
from langchain_core.utils import stringify_dict
|
||
|
|
||
|
from langchain_community.document_loaders.base import BaseLoader
|
||
|
|
||
|
|
||
|
class AirbyteJSONLoader(BaseLoader):
|
||
|
"""Load local `Airbyte` json files."""
|
||
|
|
||
|
def __init__(self, file_path: str):
|
||
|
"""Initialize with a file path. This should start with '/tmp/airbyte_local/'."""
|
||
|
self.file_path = file_path
|
||
|
"""Path to the directory containing the json files."""
|
||
|
|
||
|
def load(self) -> List[Document]:
|
||
|
text = ""
|
||
|
for line in open(self.file_path, "r"):
|
||
|
data = json.loads(line)["_airbyte_data"]
|
||
|
text += stringify_dict(data)
|
||
|
metadata = {"source": self.file_path}
|
||
|
return [Document(page_content=text, metadata=metadata)]
|