Add LibSQL support to embedjs. Latest version: 0.1.28, last published: 3 months ago. Start using @llm-tools/embedjs-libsql in your project by running `npm i @llm-tools/embedjs-libsql`. There is 1 other project in the npm registry using @llm-tools/embedjs
feat: added libsql support in embedJs Nov 28, 2024 .npmignore bump package versions + bugfixes Aug 14, 2024 .prettierignore feat: new doc website + merged conversations with cache Oct 10, 2024 .prettierrc feat: switch to monorepo
embedjs-cosmos chore(release): create release 0.1.28 Dec 31, 2024 embedjs-hnswlib chore(release): create release 0.1.28 Dec 31, 2024 embedjs-lancedb chore(release): create release 0.1.28 Dec 31, 2024 embedjs-libsql chore(release): create release 0.1.28 Dec 31, 2024 embedjs-lmdb chor...
A NodeJS RAG framework to easily work with LLMs and custom datasets. Latest version: 0.1.28, last published: 4 months ago. Start using @llm-tools/embedjs in your project by running `npm i @llm-tools/embedjs`. There are 3 other projects in the npm registr
embedjs loaders .editorconfig .gitignore .prettierignore .prettierrc README.md eslint.config.js nx.json package-lock.json package.json tsconfig.base.json Repository files navigation README LlmTools ✨ Your new, shiny Nx workspace is almost ready ✨. Learn more about this ...
Sitemap recursive loader for embedjs. Latest version: 0.1.28, last published: 3 months ago. Start using @llm-tools/embedjs-loader-sitemap in your project by running `npm i @llm-tools/embedjs-loader-sitemap`. There are no other projects in the npm registr
A NodeJS RAG framework to easily work with LLMs and embeddings - Pull requests · llm-tools/embedJs
A NodeJS RAG framework to easily work with LLMs and custom datasets. Latest version: 0.1.28, last published: 3 months ago. Start using @llm-tools/embedjs in your project by running `npm i @llm-tools/embedjs`. There are 2 other projects in the npm registr
dependabot[bot]committedApr 24, 2024 · 2 / 3 Verified 4090d5d Merge branch 'main' of https://github.com/llm-tools/embedJs adhityancommittedApr 24, 2024 · 1 / 1 56a6587 Updated readme with import paths and qdrant adhityancommittedApr 24, 2024 c621414 Commits on Apr 23, 2024 ...
import { OpenAiEmbeddings } from '@llm-tools/embedjs-openai'; import { HNSWDb } from '@llm-tools/embedjs-hnswlib'; const app = await new RAGApplicationBuilder() .setModel(SIMPLE_MODELS.OPENAI_GPT4_O) .setEmbeddingModel(new OpenAiEmbeddings()) .setVectorDatabase(new HNSWDb()) .build(...