■ CharacterTextSplitter 클래스의 create_documents 메소드에서 metadatas 인자를 사용해 메타 정보를 설정하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from langchain_text_splitters import CharacterTextSplitter with open("appendix-keywords.txt") as textIOWrapper: fileContent = textIOWrapper.read() characterTextSplitter = CharacterTextSplitter( chunk_size = 250, chunk_overlap = 50, length_function = len, is_separator_regex = False ) documentList = characterTextSplitter.create_documents([fileContent, fileContent], metadatas = [{"document" : 1}, {"document" : 2}]) print(documentList[0].metadata) """ {'document': 1} """ |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
annotated-types==0.7.0 anyio==4.8.0 certifi==2024.12.14 charset-normalizer==3.4.1 exceptiongroup==1.2.2 h11==0.14.0 httpcore==1.0.7 httpx==0.28.1 idna==3.10 jsonpatch==1.33 jsonpointer==3.0.0 langchain-core==0.3.29 langchain-text-splitters==0.3.5 langsmith==0.2.10 orjson==3.10.14 packaging==24.2 pydantic==2.10.5 pydantic_core==2.27.2 PyYAML==6.0.2 requests==2.32.3 requests-toolbelt==1.0.0 sniffio==1.3.1 tenacity==9.0.0 typing_extensions==4.12.2 urllib3==2.3.0 |
※ pip install langchain-text-splitters 명령을 실행했다.