Website Knowledge Base
Last updated
Last updated
The WebsiteKnowledgeBase reads websites, converts them into vector embeddings and loads them to a vector_db
.
We are using a local PgVector database for this example.
knowledge_base.py
Then use the knowledge_base
with an Agent
:
agent.py
urls
List[str]
-
URLs to read
reader
WebsiteReader
-
A WebsiteReader
that reads the urls and converts them into Documents
for the vector database.
max_depth
int
3
Maximum depth to crawl.
max_links
int
10
Number of links to crawl.
vector_db
VectorDb
-
Vector Database for the Knowledge Base.
num_documents
int
5
Number of documents to return on search.
optimize_on
int
-
Number of documents to optimize the vector db on.
chunking_strategy
ChunkingStrategy
FixedSizeChunking
The chunking strategy to use.