Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nvd-54.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

ROAM is a note-taking tool for networked thought, designed to create a personal knowledge base.
本 notebook 介绍如何load documents from a Roam database. This takes a lot of inspiration from the Roam QA example repository.

🧑 Instructions for ingesting your own dataset

Export your dataset from Roam Research. You can do this by clicking on the three dots in the upper right hand corner and then clicking Export. 导出时,请确保选择 Markdown & CSV 格式选项。 这将在你的下载文件夹中生成一个 .zip 文件。将 .zip 文件移到此仓库中。 运行以下命令解压 zip 文件(根据需要将 Export... 替换为你自己的文件名)。
unzip Roam-Export-1675782732639.zip -d Roam_DB
from langchain_community.document_loaders import RoamLoader
loader = RoamLoader("Roam_DB")
docs = loader.load()