Questions tagged [pinecone]
43 questions
0
votes
0 answers
Can managed vector db like pinecone support MMR
To get diversity in the search results, I want to use max marginal relevance for this.
I want to fetch N documents form vector db similar to question, then subsequently I want to get documents which are similar to question but dissimilar to existing…

raju
- 4,788
- 15
- 64
- 119
0
votes
0 answers
What are some questions about using vector data with Pinecone?
The following is my understanding of using vector data with Pinecone. I'm not sure if it's correct or not.
If we store user chat context data in Pinecone and retrieve it every time a new chat is input to pass as context to ChatGPT, what is the…

Ehz uiq
- 11
- 2
0
votes
1 answer
pinecone ingest requested feature 'Namespaces' is not supported
Im following this tutorial https://github.com/chroma-core/gpt4-pdf-chatbot-langchain-chroma
but get an error when ingesting the PDF to Pinecone
error [PineconeError: PineconeClient: Error calling upsert: PineconeError: The requested feature…

manuelBetancurt
- 15,428
- 33
- 118
- 216
0
votes
1 answer
Error with query engine (Python, OpenAI, Pinecone, Llama_Index)
I was using an old version of llama_index for a while, I just updated the package and a lot of syntax changed... I am currently trying to use Pinecode for vector indexes and OpenAI for embeddings and completion. This is my code:
with open(file_path,…
0
votes
0 answers
Indexing custom data on Pinecone
So I have a company's data (The data is basically their website dump) and I want this data to be indexed so that I can build a semantic search engine.
The data structure is somewhat like this
[{'title': 'some title','content':'web page's…

Krishna Gupta
- 19
- 1
0
votes
0 answers
Building a GPT-3 Enabled Research Assistant with LangChain & Pinecone
I would like a chatbot that can handle large CSV files and answer any questions about the data contained within them.
I have implemented Pinecone to store vector data and connected it with Langchain. However, the current setup is not providing…
0
votes
0 answers
Unable to query pinecone vector index using filter?
I am having issues trying to query my pinecone index with a filter. It works without the filter however. Any help or advice would be greatly appreciated!
I have upserted into pinecone in the following way:
for doc in tqdm(docs_restaurant):
…

Anthony Arena
- 217
- 1
- 3
- 10
0
votes
0 answers
How to impove pinecone/openAI/langchain/python setup
I’m having an issue training a Pinecone/langchain/model.
For some reason, when I feed the data into Pinecone and I query a question I don’t get get correct answers even for simple stuff like asking “what’s is the title of the document”
I was able to…

Juan Casas
- 268
- 2
- 13
-1
votes
0 answers
Custom chatbot built using langchain+Flowise+Pinecone+Render is super slow
I've built a chatbot using Flowise and Pinecone and using render to run my chatbot. I have it embedded on a mockup site I build to test the chatbot on. The response time when I ask questions is very slow.
I have one flow (Flow 1) to upsert the…

3dots
- 1
-1
votes
0 answers
How Can I Upsert Freshdesk Ticket Data into Pinecone and Query It Using Sentence Transformers?
I am trying to upsert Freshdesk ticket data into Pinecone and then query that data. Despite trying multiple approaches, I'm still struggling with what seems to be a simple task.
Upserting Data
I have the following code to upsert Freshdesk ticket…
-1
votes
0 answers
I want to compare the context of two pdf's and summarize the changes in NLP
I did a project when you ask questions in NLP to Pdf's and answers using pinecone db and indexes, openAI embeddings, however, this problem is different you need to compare two pdf's find out the difference and summarize it . Do you know how I can…

Nisha
- 1
-2
votes
0 answers
What could be the best way to implement image search using powerpoint text?
I want to create a search utility where we use text within powerpoint slides and image of each slide in a powerpoint. Upon entering a search term the application should return the k most relevant slide images.
For this i have explored Pinecone's…

Danish Zahid Malik
- 541
- 2
- 7
- 19
-2
votes
2 answers
{ "message": "Error : An error occurred: 'str' object does not support item assignment." }
I have a blob storage account where I dropped a single file.
Then I want to add a record on pinecone based on this file using langchain:
@app.get("/BlobStorage")
def IndexContainer(storageContainer: str, indexName: str, namespace_name: str):
…

Luis Valencia
- 32,619
- 93
- 286
- 506