How to use Notion tool as an internal knowledge base data in AI Agent Node

Hello everyone. I am still stuck at a problem.
I was gonna connect the Notion as an internal Knowledge base for AI Agent Node. So I added Notion tool into AI Agent Node. But I am not sure how to reference the Notion. Please help me.

I understand you want to build a RAG.
You need to inject notion docs into a Vector Store

1 Like

If you can provide any example, it would be grateful!

If your knowledge base is already in a Notion database, you might not need a vector store right away β€” it’s possible to query Notion content directly. This video offers a good overview: https://youtu.be/ynLZwS2Nhnc?si=neNKRAkDHJcCzXFu

That said, if your data is spread across multiple Notion databases, the process can get more complex. A more scalable and flexible approach is often to index your Notion content into a vector store, especially if you plan to use it with AI or Retrieval-Augmented Generation (RAG).

To explore that path, I suggest looking into:
β€’ RAG (Retrieval-Augmented Generation)
β€’ Embeddings
β€’ Vector stores (e.g. Pinecone, Qdrant)

There are plenty of resources and examples online that walk through this kind of setup.