llm-tools / embedJs

A NodeJS RAG framework to easily work with LLMs and embeddings
https://llm-tools.mintlify.app/get-started/introduction
Apache License 2.0
335 stars 40 forks source link

Chroma in NPM #64

Closed alphiecore closed 6 months ago

alphiecore commented 6 months ago

it appears that ChromaDB is not exported within the NPM Module. also, think Ollama embeddings is missing unless i'm doing something wrong?

Module '"@llm-tools/embedjs"' has no exported member 'ChromaDb'.ts(2305)

adhityan commented 6 months ago

You will need to import ChromaDB like so `import { ChromaDb } from '@llm-tools/embedjs/vectorDb/chroma';

Please refer to the Chroma related documentation for more information. ` Regarding Ollama, the library currently only supports using LLMs via Ollama; support for Ollama embeddings is coming soon but not available yet.