vector_db
.
knowledge_base
with an Agent
:
Parameter | Type | Default | Description |
---|---|---|---|
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. |