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
import pinecone
pinecone.init(api_key="YOUR_API_KEY")
index = pinecone.Index("YOUR_INDEX_NAME")
# Fetch all ids, vectors and metadata from the index
ids, vectors, metadata = index.fetch("*", include_metadata=True)
# Convert vectors to lists
vectors = [v.tolist() for v in vectors]
# Create a json object with ids, vectors and metadata
data = {"ids": ids, "vectors": vectors, "metadata": metadata}
If you need edit access to upload, DM ccstan99 on discord with your gmail address.
The text was updated successfully, but these errors were encountered:
Provide a JSON version of pinecone embeddings in gdrive https://drive.google.com/drive/folders/1cyP-wjiHZ4PoPnFlG19ti904cJsm5iSr so others can upload & test in their personal dev environment. In theory, something like:
If you need edit access to upload, DM ccstan99 on discord with your gmail address.
The text was updated successfully, but these errors were encountered: