Skip to content

bitswired/website-to-knowledge-base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI-Powered Knowledge Base

Turn.any.website.into.an.llm-powered.knowledge.base.mp4

YouTube Demo

This repository contains an AI-powered knowledge base that utilizes the LLMs model to answer questions based on a given website's content and provide sources as links to the relevant pages.

The system:

  1. Loads the website's content using a sitemap
  2. Split each web page into chunks
  3. Embed each chunk using a LLM (for now OpenAI) and store them in the **Chroma vector database
  4. Then it embeds the user query and run a similarity search using the Chroma database
  5. Finally it loads the similarity search results as context for a LLM (for now ChatGPT) to find relevant answers and citing the sources

It also provides a Streamlit-based web interface for an easy-to-use experience.

Files

  • knowledge_base.py: The main module that creates the KnowledgeBase class. This class is responsible for loading and processing the website content, creating the document index, and querying the LLM model for answers.
  • app.py: A Streamlit web application that provides a user interface for querying the AI-powered knowledge base.

Installation

  1. Clone the repository:
git clone git@github.com:bitswired/website-to-knowledge-base.git
  1. Instal the project with poetry:
poetry install

Usage

Knowledge Base

To use the KnowledgeBase class, follow these steps:

  1. Import the KnowledgeBase class:
from knowledge_base import KnowledgeBase
  1. Instantiate the KnowledgeBase with the appropriate sitemap URL and pattern (optional):
kb = KnowledgeBase(
    sitemap_url="https://nextjs.org/sitemap.xml",
    pattern="docs/api-refe",
    chunk_size=8000,
    chunk_overlap=3000,
)
  1. Ask a question:
result = kb.ask("How do I deploy my Next.js app?")
print(result)

Web Application

To run the Streamlit web application, execute the following command in your terminal:

streamlit run app.py

The web app will open in your default browser. Enter the URL to the website's sitemap, an optional filter pattern for the URLs, and your question. The AI-powered knowledge base will return an answer based on the content of the website.

Requirements

License

This project is licensed under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages