■ TokenTextSplitter 클래스의 split_text 메소드를 사용해 문자열을 문자열 리스트로 분할하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from langchain_text_splitters import TokenTextSplitter with open("appendix-keywords.txt") as textIOWrapper: fileContent = textIOWrapper.read() tokenTextSplitter = TokenTextSplitter( chunk_size = 200, chunk_overlap = 0 ) textList = tokenTextSplitter.split_text(fileContent) print(textList[0]) """ Semantic Search 정의: 의미론적 검색은 사용자의 질의를 단순한 키워드 매칭을 넘어서 그 의미를 파악하여 관련된 결과를 반환하는 검색 방식입니다. 예시: 사용자가 "태양계 행성"� """ |
▶ 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 28 29 |
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 regex==2024.11.6 requests==2.32.3 requests-toolbelt==1.0.0 sniffio==1.3.1 tenacity==9.0.0 tiktoken==0.8.0 typing_extensions==4.12.2 urllib3==2.3.0 |
※ pip install langchain-text-splitters tiktoken 명령을 실행했다.