Examples
Knowledge Base Bot
Build a chatbot that retrieves information from a knowledge base.
This example shows how to create a chatbot that uses a knowledge base to provide context-aware responses.
Workflow Structure
Here's an example of a knowledge base workflow:

Steps
- Add QueryNode for user input
- Add KnowledgeBaseRetrievalNode to fetch relevant context
- Add LanguageModelNode that uses the retrieved context
- Add ResponseNode for final output
- Connect: Query → Knowledge Base → Language Model → Response
Configuration
Make sure to configure your vector database connection in the KnowledgeBaseRetrievalNode settings.
Was this page helpful?