Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from dotenv import load_dotenv | |
from operator import itemgetter | |
load_dotenv() | |
from langchain_community.document_loaders import PyPDFLoader | |
from langchain_text_splitters import CharacterTextSplitter | |
from langchain.document_loaders.csv_loader import CSVLoader | |
from langchain.docstore.document import Document |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("hello world! this is my first gist") |