Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open In ColabOpen on GitHub

Copy Paste

This notebook covers how to load a document object from something you just want to copy and paste. In this case, you don't even need to use a DocumentLoader, but rather can just construct the Document directly.

from langchain_core.documentsimport Document
API Reference:Document
text="..... put the text you copy pasted here......"
doc= Document(page_content=text)

Metadata

If you want to add metadata about the where you got this piece of text, you easily can with the metadata key.

metadata={"source":"internet","date":"Friday"}
doc= Document(page_content=text, metadata=metadata)

Related


[8]ページ先頭

©2009-2025 Movatter.jp