Assistant doesn't work with valid API Key
I’m in the beta for assistants and wanted to start by following your tutorial but they key is not accepted - even a new one isn’t UnauthorizedException: (401) Reason: Unauthorized HTTP response...
View ArticleHow to Prioritize Certain Websites in Chatbot Responses?
Hi Pinecone Community, I’m building a chatbot that interacts with various websites. I need to give more importance to some websites over others. I’ve included an “importance” score in the metadata for...
View ArticlePinecone is not a constructor Error
import { Pinecone } from "@pinecone-database/pinecone"; async function initPinecone() { try { const pinecone = new Pinecone({ apiKey: process.env.PINECONE_API_KEY, }); return pinecone; } catch (error)...
View Article"Namespace not found" error when trying to upsert for the first time to an index
I’m getting this error when I first try to upsert to an index using a namespace: HTTP response body: {"code":5,"message":"Namespace not found","details":[]} My understanding is that the namespace...
View ArticleUnable to upsert vectors to new serverless vector
Unable to upsert vectors (via python) to new serverless index. However the complex process of upserting works very well for pod index. Currently i am using pip install pinecone-client==2.2.2, pip...
View ArticleList results from query in a specific order other than by score
Hello I’m interested in knowing if it’s possible to sort the output of your results using a specific parameter other than the similarity score. Currently, I retrieve the ID numbers of the xx newest...
View ArticleMissing Pricing Calculator
Hi all, I have noticed that the usual pricing calculator is not found in the pricing page. Has anyone experience this as well? Would need help from the devs and support as well. 1 post - 1 participant...
View ArticleHelp with last steps for flask-canopy-slack-herokuapp
Hey all I’m trying to deploy a Slack bot that uses the Canopy RAG system. The bot connects to Canopy by Pinecone for embedding and searching a database. I’ve developed a Flask app as middleware. It...
View ArticleHow to query based on Source(file name) of metadata
1.As i want to create embeddings for many loan cases txt files, so I should check weather the embedding for particular file, before creating and storing embeddings in pinecone. 2. While asking queries...
View ArticleChecking for existing embeddings. Filter specific queries
Pinecone: Checking for Existing Embeddings: To avoid creating duplicate embeddings, you can implement a system to check for existing embeddings before generating new ones. Here’s a potential approach:...
View ArticleAWS Bedrock sync - The knowledge base storage configuration provided is...
Hey there I’m using AWS Bedrock Knowledge base with Pinecone vector database. All was working well when I’m syncing by datasource with s3, but after a while, clicking on the “Sync” button again from...
View Articleurllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='api.pinecone.io',...
This issue is marked resolved but the links to the “resolution” are dead links. I cannot get around this error message. [SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol...
View ArticleCan't instantiate abstract class BaseRetriever with abstract methods when try...
qa=RetrievalQA.from_chain_type( llm=llm, chain_type=“stuff”, retriever=docsearch.as_retriever(search_kwargs={‘k’: 2}), return_source_documents=True, chain_type_kwargs=chain_type_kwargs) above code...
View ArticlePinecone java client is slower compared to okHttpClient (Rest)
Pinecone java client performance with upsert operation is close to 3 times slower compared to using okHttpClient (Rest based). Has someone faced the same issue? What is the recommended way by...
View ArticleTypeError: Cannot read properties of undefined (reading 'data')
Describe the bug I am using flowise with railway. I use pinecode to store data. I want to upload text files and my website pages. I am using the Text Node and Puppeter web crawler Node. I attached...
View ArticleWhat are the best practices for retrieving answers in different languages...
I am currently building a Retrieval-Augmented Generation (RAG) setup utilizing Pinecone and OpenAI. My goal is to store data in Pinecone in multiple languages and configure OpenAI to handle questions...
View ArticleServerless Pod Deletion Latency
I have the following code that essentially iterates over a list of key value pairing metadata and deletes any vectors associated with these pairings. However, I notice that my deletes are not going...
View ArticleGetting gRPC unknown error when trying to delete all vectors using namespace
I’m running this code: index.delete(namespace=NAMESPACE, delete_all=True) and am getting this error: *** pinecone.core.client.exceptions.PineconeException: UNKNOWN:Error received from peer...
View ArticleGrpc StatusRuntimeException: UNAVAILABLE: io exception using Spark
If I try to upsert to the pinecone index (Pod) using the following method (referred from Databricks - Pinecone Docs) ( df.write .option("pinecone.apiKey", api_key) .option("pinecone.indexName",...
View ArticleDo the URLs for Serverless Nodes Change Over Time?
My infosec team is wondering if the API endpoints for serverless nodes change over time. We want to make some firewall rules that allow me to hit the endpoints but want to know if we can just directly...
View Article