You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
For now I could create my own DB instance I suppose? Something like
async function App(db) {
const navalChatBot = new EmbedChain(db);
// ... Other initialization logic
return navalChatBot;
}
//Run the app commands inside an async function only
async function testApp() {
const myDB = new MyCustomDB();
const navalChatBot = await App(myDB);
The text was updated successfully, but these errors were encountered:
It would be nice to pass different models here https://github.com/embedchain/embedchainjs/blob/ff5c5fef4bf3dc7ae3b44d28142e42f596829b14/embedchain/embedchain.ts#L146 i.e gpt-4
Also I am thinking about deploying a chromadb instance on cloudformation https://docs.trychroma.com/deployment?lang=js
So it would be nice to not have to rely on it being on the same machine the js is running on i.e :8000 https://github.com/embedchain/embedchainjs/blob/ff5c5fef4bf3dc7ae3b44d28142e42f596829b14/embedchain/vectordb/ChromaDb.ts#L21
For now I could create my own DB instance I suppose? Something like
The text was updated successfully, but these errors were encountered: