-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
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
API Initialization Issue #1
Comments
Is it working now? |
@VEDANTBISHT I was facing the same issue. After debugging for much time, got to know that pinecone-client version <=2.2.4 only supports init package and is deprecated in furthur releases. [Ref. : Pinecone-Migration-Guide] |
Uninstall the current version of pineconepip uninstall pinecone-client Now install pinecone version: 2.2.4pip install pinecone-client==2.2.4 |
I reduced to a lower version but after that there was no more environment variable on the pinecone website and when I tried using chromadb it didn't work, especially with the hugging face embeddings I have been trying to solve this but to no avail. Does anyone have a fix |
Just follow the Quickstart guide, everything is there. Methods used to access Pinecone has changed overtime so you need to adapt the code accordingly. |
Hey, Can you solve this error with the currect version itself. Follow this steps :
index_name= "give_any_index_name_of_your_wish"
pc=Pinecone(api_key=PINECONE_API_KEY)
#creating index
if index_name not in pc.list_indexes().names():
pc.create_index(
name= index_name,
dimension= 384,
metric= 'cosine',
spec= ServerlessSpec(cloud= 'aws', region="us-east-1")
) index= pc.Index(index_name)
index Since init method is no longer available, we can't create index in pinecone and initialize this in our python scripts. So you need to create index Through your python script and intialize this. The above code creates index and intialize through the script itself. Hope it helped you!!!! Still facing Issue?? Go through this https://github.com/Shashank1202/AI-Driven-Customer-Chatbot/blob/main/research/trails.ipynb |
After running the code from store_index.py file
pinecone.init(api_key=PINECONE_API_KEY,
environment=PINECONE_API_ENV)
It shows the given error:-
Traceback (most recent call last):
File "C:\Users\vedan\Downloads\kuch bhi\End-to-end-Medical-Chatbot-using-Llama2\store_index.py", line 21, in
pinecone.init(api_key=PINECONE_API_KEY,
File "C:\Users\vedan\AppData\Roaming\Python\Python312\site-packages\pinecone\deprecation_warnings.py", line 38, in init
raise AttributeError(msg)
AttributeError: init is no longer a top-level attribute of the pinecone package.
Please create an instance of the Pinecone class instead.
Example:
Can you pls help me find the error as init is no longer supported by Pinecone.
The text was updated successfully, but these errors were encountered: