Document Ingestion Kit
Parse PDFs, docs, HTML into structured chunks.
0/6 documents processed
Configuration
Document Ingestion
arxiv_2301.07041.pdf2.4 MB
anthropic_safety_blog.md156 KB
nature_ml_survey.pdf8.1 MB
techcrunch_ai_policy.html89 KB
arxiv_2212.08073.pdf4.7 MB
wikipedia_llm_evaluation312 KB
Integration Code
import { createKnowledgeBase } from 'agent-tools-kit/knowledge'
const kb = createKnowledgeBase({ chunking: 'semantic', embedModel: 'text-embedding-3-small' })
await kb.ingest('./documents/')
const results = await kb.search('query text', { topK: 5 })