■ TextLoader 클래스의 생성자에서 encoding 인자를 사용해 UTF-8 인코딩 파일을 로드하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 |
from langchain_community.document_loaders import TextLoader textLoader = TextLoader("paul_graham_essay.txt" , encoding = "utf-8") |
※ pip install langchain-community 명령을 실행했다.