■ Language 열거형을 사용해 지원 프로그래밍 언어를 조회하는 방법을 보여준다.
▶ 예제 코드 (PY)
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 30 31 32 33 34 35 |
from langchain_text_splitters import Language for enumerationValue in Language: print(enumerationValue.value) """ cpp go java kotlin js ts php proto python rst ruby rust scala swift markdown latex html sol csharp cobol c lua perl haskell elixir powershell """ |
※ pip install langchain-text-splitters 명령을 실행한다.