■ TextLoader 클래스의 load 메소드를 사용해 텍스트 파일을 로드하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
from langchain_community.document_loaders import TextLoader textLoader = TextLoader("state_of_the_union.txt") documentList = textLoader.load() |
■ TextLoader 클래스의 load 메소드를 사용해 텍스트 파일을 로드하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
from langchain_community.document_loaders import TextLoader textLoader = TextLoader("state_of_the_union.txt") documentList = textLoader.load() |