We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation under vector databases for Pinecone, there may be an error unless I am missing something.
When importing embedjs-pinecone the example shows: import { LanceDb } from '@llm-tools/embedjs-pinecone';
import { LanceDb } from '@llm-tools/embedjs-pinecone';
However, later the example calls upon new PineconeDb within .setVectorDb as shown (instead of LanceDb):
new PineconeDb
.setVectorDb
LanceDb
const app = await new RAGApplicationBuilder() .setEmbeddingModel(new OpenAiEmbeddings()) .setModel(SIMPLE_MODELS.OPENAI_GPT4_O) .setVectorDb(new PineconeDb({ ...
This caused an error, which seems to have been resolved when I exchanged { LanceDb } with { PineconeDb } in the import statement.
{ LanceDb }
{ PineconeDb }
import
The text was updated successfully, but these errors were encountered:
Thanks for pointing it out. It's addressed now.
Sorry, something went wrong.
adhityan
No branches or pull requests
Issue with current documentation:
In the documentation under vector databases for Pinecone, there may be an error unless I am missing something.
When importing embedjs-pinecone the example shows:
import { LanceDb } from '@llm-tools/embedjs-pinecone';
However, later the example calls upon
new PineconeDb
within.setVectorDb
as shown (instead ofLanceDb
):This caused an error, which seems to have been resolved when I exchanged
{ LanceDb }
with{ PineconeDb }
in theimport
statement.The text was updated successfully, but these errors were encountered: