Built in
π DOCX file
Get Started
Components
- EmbedJs Components
- ποΈ Data sources
- ποΈ Vector databases
- π€ Large language models
- 𧩠Embedding models
- β‘ Stores
Integrations
Product
Built in
π DOCX file
You can load any docx file from your local file system or through a URL.
Install MSOffice addon
npm install @llm-tools/embedjs-loader-msoffice
Usage
import { RAGApplicationBuilder } from '@llm-tools/embedjs';
import { OpenAiEmbeddings } from '@llm-tools/embedjs-openai';
import { HNSWDb } from '@llm-tools/embedjs-hnswlib';
import { DocxLoader } from '@llm-tools/embedjs-loader-msoffice';
const app = await new RAGApplicationBuilder()
.setModel(SIMPLE_MODELS.OPENAI_GPT4_O)
.setEmbeddingModel(new OpenAiEmbeddings())
.setVectorDatabase(new HNSWDb())
.build();
app.addLoader(new DocxLoader({ filePathOrUrl: '...' }))
Was this page helpful?
On this page