🌴
【LangChain】テキストをDocumentオブジェクトに変換する
LangChainを使っていると、Documentオブジェクトを使う場面が多くあります。
今回は、テキストをDocumentオブジェクトに変換する方法のメモです。
テキストをDocumentオブジェクトに変換するコード
とても簡単でした。
from langchain_core.documents import Document
text = "ジェシーは赤が好きだけど黄色は好きではない"
document = Document(page_content=text)
document
# Document(page_content='ジェシーは赤が好きだけど黄色は好きではない')
まとめ
LangChainではDocumentオブジェクトを使用することが多いので、この処理を使う場面も多くなるかもしれないです。
Discussion