Skip to main content

Knowledge & Assets

An AI model knows a great deal about the world and nothing at all about your business. This section is how you fix that: document stores give a flow something to answer from, and assets give it files to hand out.

The Document Stores page, with the workspace's stores and their chunk counts.

Two different things, one page

The Document Stores page in the left menu has two tabs, and they solve different problems:

TabWhat it holdsWhat a flow does with it
Document StoresYour documents, split into chunks and indexed for searchSearches them mid-conversation to ground its answer
FilesStatic files — logos, price lists, PDFs you send to customersReferences them by URL and hands them over

The first is knowledge. The second is assets. A support bot typically uses both: it answers from the store, and attaches the warranty PDF from the file library.

How knowledge works

The mechanism is called RAG — retrieval-augmented generation — and it's simpler than the acronym suggests:

Your documents → split into chunks → turned into vectors → stored

Customer asks a question → turned into a vector → most similar chunks found

Chunks + question → model → answer

The model never memorises your documents. It gets handed the handful of passages most relevant to this question, and answers from those. That's why it can cite your actual refund policy instead of inventing a plausible one — and why keeping the store up to date matters more than picking a clever model.

Each step has a page here:

  1. Document stores — create the container.
  2. Document loaders — get your content in, from 38 sources.
  3. Chunking — how documents get split, and why the size matters.
  4. Vector store — embeddings, indexing, and upserting.
  5. Query playground — check what the store actually returns before a customer does.

Then wire it into a flow with the Retriever node, which is how a flow reads from a document store.

When you need this — and when you don't

SituationDo you need a document store?
Answers come from a handful of facts you can write in a promptNo. Put them in the system prompt
Answers live in documents that change, or are too long for a promptYes
You need the bot to quote policy accuratelyYes
The data is live — stock levels, order statusNo. Use an HTTP node or a tool

A document store is for knowledge that's large and slow-moving. Anything that changes minute to minute should be fetched at run time, not indexed.

In this section