■ TextLoader 클래스를 사용해 텍스트 로더를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 |
from langchain_community.document_loaders import TextLoader textLoader = TextLoader("state_of_the_union.txt") |
■ TextLoader 클래스를 사용해 텍스트 로더를 만드는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 |
from langchain_community.document_loaders import TextLoader textLoader = TextLoader("state_of_the_union.txt") |